Added module list model file

This commit is contained in:
dhanabalan
2025-07-11 12:26:17 +05:30
parent 4a17892865
commit 9173dcb50a

19
app/Models/ModuleList.php Normal file
View File

@@ -0,0 +1,19 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class ModuleList extends Model
{
use SoftDeletes;
protected $fillable = [
'module_name',
'dashboard_name',
'filter_name',
'created_by',
'updated_by',
];
}