online pembayaran

This commit is contained in:
hafifierahman
2021-01-26 05:57:53 +08:00
parent 0ea7ce7454
commit 865204a735
5 changed files with 67 additions and 24 deletions
+40
View File
@@ -0,0 +1,40 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class AnsRugi extends Model
{
protected $table = 'gldetail';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'kodcaw',
'tarikh',
'dtacct',
'ktacct',
'descpt',
'acttype',
'fracttype',
'amaun',
'teller',
'pelulus',
'terima',
'jenisbyr',
'bkcode',
'nocek'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}