Files
api_arrahn/app/TransactionOnline.php
T
Afiq Zakwan b8ff35e804 portal
2023-12-20 08:04:51 +08:00

28 lines
685 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class TransactionOnline extends Model
{
protected $table = 'transaction_online';
public $timestamps = false;
protected $primaryKey = 'id';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'nokp','reference_no','nosiri','total_payment','tarikh','masa','status','billplz_id','kodcaw','norujukan','paid_at','customer_name','update_status','update_serahan','tempohbayar','tagportal','jenisbayaran'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}