Files
api_arrahn/app/TacExpressPayment.php
2021-06-08 13:32:03 +08:00

26 lines
481 B
PHP

<?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 = [];
}