online transaction

This commit is contained in:
LAPTOP-DGCU80CH\user1
2020-12-21 13:38:49 +08:00
parent 3d5697c065
commit c18e8cca98
4 changed files with 67 additions and 1 deletions
+27
View File
@@ -0,0 +1,27 @@
<?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 = [];
}