kelantanpay

This commit is contained in:
afiq
2022-01-16 10:17:36 +08:00
parent 5cd9063406
commit 5365882820
3 changed files with 112 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class KelantanPayPayment extends Model
{
protected $table = 'kelantanpay_payment';
protected $connection = 'mysql7';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'norujukan',
'nokp',
'customer_name',
'kp_reference_no',
'payment_date',
'payment_time',
'status',
'cron_update'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}