sarga/packages/Webkul/Core/src/Models/CurrencyExchangeRate.php

19 lines
410 B
PHP
Executable File

<?php
namespace Webkul\Core\Models;
use Illuminate\Database\Eloquent\Model;
use Webkul\Core\Contracts\CurrencyExchangeRate as CurrencyExchangeRateContract;
class CurrencyExchangeRate extends Model implements CurrencyExchangeRateContract
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'target_currency',
'rate',
];
}