Files
Global-Jain/app/Models/ChaturmasReview.php
2025-11-05 10:37:10 +05:30

30 lines
489 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class ChaturmasReview extends Model
{
use HasFactory;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'user_id',
'sant_id',
'chaturmas_id',
'comment',
'created_by',
'updated_by',
];
protected $guarded = [
'id',
];
}