Files
2022-12-05 02:29:51 +08:00

43 lines
855 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Permohonan extends Model
{
protected $table = 'permohonan';
public $timestamps = false;
protected $connection = 'mysql7';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'mohonid',
'kodcaw',
'jenismohon',
'baki_petibesi',
'amaun_mohon',
'nama_pemohon',
'jawatan_pemohon',
'tarikh_permohonan',
'tarikh_diluluskan',
'jumlah_diluluskan',
'tarikh_terima',
'nama_penerima',
'outstandingsemasa',
'nopermohonan',
'tagjanapc',
'tagterima'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}