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

53 lines
1018 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',
'resit_cit',
'nama_cit',
'jeniscit',
'resitfiles_id',
'invoicefiles_id'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}