mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/shipping-portal.git
synced 2026-08-22 05:54:01 +00:00
22 lines
382 B
PHP
22 lines
382 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class CurrencyRate extends AbstractModel
|
|
{
|
|
use SoftDeletes;
|
|
|
|
protected $table = 'currency_rates';
|
|
|
|
protected $fillable = ['currency_id', 'selling', 'payment_method_type'];
|
|
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'deleted_at' => 'datetime',
|
|
];
|
|
}
|
|
}
|