Files
api_arrahn/app/Permohonan.php
T
hafifierahman d58e7dcd09 fix skit2
2022-03-21 10:48:23 +08:00

40 lines
782 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'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}