Files
api_arrahn/app/TransactionOnline.php
T
LAPTOP-DGCU80CH\user1 c18e8cca98 online transaction
2020-12-21 13:38:49 +08:00

27 lines
550 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'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}