speed payment

This commit is contained in:
afiq
2021-06-08 13:32:03 +08:00
parent 8c8b7f123a
commit 55d494296a
3 changed files with 92 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class TacExpressPayment extends Model
{
protected $table = 'tac_express_payment';
public $timestamps = false;
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'norujukan','expired_at','tac_no'
];
/**
* The attributes excluded from the model's JSON form.
*
* @var array
*/
// protected $hidden = [];
}