master crud setup
This commit is contained in:
25
app/Models/Fee/Fee.php
Normal file
25
app/Models/Fee/Fee.php
Normal file
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
namespace App\Modules\Models\Fee;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class Fee extends Model
|
||||
{
|
||||
protected $table = 'tbl_fees';
|
||||
|
||||
use HasFactory;
|
||||
|
||||
protected $fillable = [
|
||||
'title',
|
||||
'program_id',
|
||||
'type',
|
||||
'amount',
|
||||
'display_order',
|
||||
'remarks',
|
||||
'status',
|
||||
'created_by',
|
||||
'created_on',
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user