Files
api_arrahn/app/Pengesahan.php
T
hafifierahman 60ee7620ba fix skit2
2022-03-29 11:45:59 +08:00

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