| Current Path : /home/users/unlimited/www/dabbawali.sizzlingcafe.co.in/app/Models/ |
| Current File : /home/users/unlimited/www/dabbawali.sizzlingcafe.co.in/app/Models/Currency.php |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Currency extends Model
{
protected $table = "currencies";
protected $fillable = ['name', 'symbol', 'code', 'is_cryptocurrency', 'exchange_rate'];
protected $casts = [
'id' => 'integer',
'name' => 'string',
'symbol' => 'string',
'code' => 'string',
'is_cryptocurrency' => 'integer',
'exchange_rate' => 'decimal:6',
];
}