Files
api_arrahn/app/Pengesahan.php
T
hafifierahman 62d1252f4e fix files
2022-04-12 11:00:52 +08:00

52 lines
994 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Pengesahan extends Model
{
protected $table = 'pengesahan';
public $timestamps = false;
protected $connection = 'mysql7';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'sahno',
'nama_operasi',
'tarikh_pengesahanoperasi',
'nama_akaun',
'tarikh_pengesahanakaun',
'jenisbank',
'noresit',
'tarikh_bankin',
'kodcaw',
'mohonid',
'tagoperasi',
'tagakaun',
'tagpb',
'tagdeposit',
'tagprint',
'tarikh_print',
'nama_print',
'tagcit',
'bank_cit',
'komen_batal',
'kelulusanpbimage',
'resit_cit',
'nama_cit',
'jeniscit'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}