34 lines
624 B
PHP
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 = [];
|
|
} |