ifnex/04_Laravel/app/Models/SystemSetting.php

18 lines
304 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class SystemSetting extends Model
{
protected $table = 'system_settings';
protected $fillable = [
'dirham_rate',
'dollar_rate',
'yuan_rate',
'euro_rate',
'profit_percent',
];
}