37 lines
728 B
PHP
37 lines
728 B
PHP
|
<?php
|
||
|
|
||
|
namespace Modules\Training\Models;
|
||
|
|
||
|
use Illuminate\Database\Eloquent\Model;
|
||
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
||
|
use Modules\Training\Database\factories\TrainerFactory;
|
||
|
|
||
|
class Trainer extends Model
|
||
|
{
|
||
|
use HasFactory;
|
||
|
|
||
|
protected $table = 'tbl_trainers';
|
||
|
|
||
|
/**
|
||
|
* The attributes that are mass assignable.
|
||
|
*/
|
||
|
protected $fillable = ['first_name',
|
||
|
'middle_name',
|
||
|
'last_name',
|
||
|
'phone',
|
||
|
'email',
|
||
|
'address',
|
||
|
'shift',
|
||
|
'salary',
|
||
|
'start_date',
|
||
|
'end_date',
|
||
|
'status',
|
||
|
'remarks',
|
||
|
];
|
||
|
|
||
|
protected static function newFactory(): TrainerFactory
|
||
|
{
|
||
|
//return TrainerFactory::new();
|
||
|
}
|
||
|
}
|