master crud setup
This commit is contained in:
17
app/Models/TestPreparation/TestPreparation.php
Normal file
17
app/Models/TestPreparation/TestPreparation.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace App\Modules\Models\TestPreparation;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class TestPreparation extends Model
|
||||
{
|
||||
protected $table = 'tbl_testpreparations';
|
||||
use HasFactory;
|
||||
protected $fillable = [
|
||||
'name',
|
||||
'description',
|
||||
'status',
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user