2018-07-24 11:11:32 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Webkul\Core\Models;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2019-02-18 07:30:40 +00:00
|
|
|
use Webkul\Core\Contracts\CurrencyExchangeRate as CurrencyExchangeRateContract;
|
2018-07-24 11:11:32 +00:00
|
|
|
|
2019-02-18 07:30:40 +00:00
|
|
|
class CurrencyExchangeRate extends Model implements CurrencyExchangeRateContract
|
2018-07-24 11:11:32 +00:00
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* The attributes that are mass assignable.
|
|
|
|
|
*
|
|
|
|
|
* @var array
|
|
|
|
|
*/
|
|
|
|
|
protected $fillable = [
|
2020-02-27 08:03:03 +00:00
|
|
|
'target_currency',
|
|
|
|
|
'rate',
|
2018-07-24 11:11:32 +00:00
|
|
|
];
|
|
|
|
|
}
|