ok
Direktori : /home2/selectio/www/myclassicfit.com-1/app/Model/ |
Current File : //home2/selectio/www/myclassicfit.com-1/app/Model/Currency.php |
<?php namespace App\Model; use Illuminate\Database\Eloquent\Model; class Currency extends Model { protected $casts = [ 'exchange_rate' => 'float', 'status' => 'integer', 'created_at' => 'datetime', 'updated_at' => 'datetime', ]; protected $table = 'currencies'; }