Files
api_arrahn/app/Permohonan.php
T
hafifierahman eda10ccfa0 fix
2022-04-14 11:26:05 +08:00

41 lines
803 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',
'tarikh_permohonan',
'tarikh_diluluskan',
'jumlah_diluluskan',
'tarikh_terima',
'nama_penerima',
'outstandingsemasa',
'nopermohonan',
'tagterima'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}