52 lines
994 B
PHP
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 = [];
|
|
} |