fix skit2
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
<?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'
|
||||
];
|
||||
|
||||
/**
|
||||
* The attributes excluded from the model's JSON form.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
// protected $hidden = [];
|
||||
}
|
||||
Reference in New Issue
Block a user