mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-23 06:24:10 +00:00
32 lines
609 B
PHP
32 lines
609 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class TransactionLog extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'owner',
|
|
'type',
|
|
'issuer',
|
|
'receiver',
|
|
'recipient_bank_account_id',
|
|
'payment_method',
|
|
'payment_reference',
|
|
'bill_no',
|
|
'amount',
|
|
'original_amount',
|
|
'currency_id',
|
|
'original_currency_id',
|
|
'currency_rate',
|
|
'tax',
|
|
'service_charge',
|
|
'expires_on',
|
|
'status',
|
|
];
|
|
}
|