<?php namespace App; use Illuminate\Database\Eloquent\Model; class ExchangeRate extends Model { protected $fillable = [ 'date', 'currency', 'code', 'reverseRate', 'rate_date', 'sync_with_ajur', ]; protected $table = 'exchange_rates'; }