Files
shipping-portal/app/Models/CurrencyRate.php
2022-12-20 21:14:09 +03:00

17 lines
303 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 $dates = ['deleted_at'];
}