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

17 lines
301 B
PHP
Raw Normal View History

2018-07-24 11:11:32 +00:00
<?php
namespace Webkul\Core\Models;
use Illuminate\Database\Eloquent\Model;
class CurrencyExchangeRate extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
'source_currency', 'target_currency', 'ratio'
];
}