| 1 | <?php namespace Bantenprov\Siswa\Models; |
||
| 11 | class SiswaModel extends Model |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * Table name. |
||
| 15 | * |
||
| 16 | * @var string |
||
| 17 | */ |
||
| 18 | protected $table = 'siswas'; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * The attributes that are mass assignable. |
||
| 22 | * |
||
| 23 | * @var mixed |
||
| 24 | */ |
||
| 25 | protected $fillable = ['nomor_un','nik','label','nama_siswa','alamat_kk','tempat_lahir','tgl_lahir','jenis_kelamin','agama','nisn','tahun_lulus','description','user_id']; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * The attributes that should be hidden for arrays. |
||
| 29 | * |
||
| 30 | * @var array |
||
| 31 | */ |
||
| 32 | protected $hidden = []; |
||
| 33 | |||
| 34 | public function user() |
||
| 38 | |||
| 39 | } |
||
| 40 |