Shell B4ckd00r
Current Dir :
/
home
/
u789730693
/
domains
/
piorasplash.com
/
public_html
/
app
/
Models
/
Home
Upload
Create Dir
Create File
Curl
Current File : /home/u789730693/domains/piorasplash.com/public_html/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', ]; }
v.01