| 1 | <?php |
||
| 8 | class Sktm extends Model |
||
| 9 | { |
||
| 10 | use SoftDeletes; |
||
| 11 | |||
| 12 | public $timestamps = true; |
||
| 13 | |||
| 14 | protected $table = 'sktms'; |
||
| 15 | protected $fillable = [ |
||
| 16 | 'nomor_un', |
||
| 17 | 'master_sktm_id', |
||
| 18 | 'no_sktm', |
||
| 19 | 'nilai', |
||
| 20 | 'user_id', |
||
| 21 | ]; |
||
| 22 | protected $hidden = [ |
||
| 23 | ]; |
||
| 24 | protected $appends = [ |
||
| 25 | 'label', |
||
| 26 | ]; |
||
| 27 | protected $dates = [ |
||
| 28 | 'deleted_at', |
||
| 29 | ]; |
||
| 30 | |||
| 31 | public function getLabelAttribute() |
||
| 39 | |||
| 40 | public function siswa() |
||
| 44 | |||
| 45 | public function master_sktm() |
||
| 49 | |||
| 50 | public function user() |
||
| 54 | } |
||
| 55 |