Files
api_arrahn/app/KelantanPayPayment.php
2022-01-16 10:17:36 +08:00

34 lines
624 B
PHP

<?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 = [];
}