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/Outlet.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Outlet extends Model { use HasFactory; protected $fillable = ['name', 'email', 'phone', 'country_code', 'latitude', 'longitude', 'city', 'state', 'zip_code', 'address', 'status']; protected $casts = [ 'id' => 'integer', 'name' => 'string', 'email' => 'string', 'phone' => 'string', 'country_code' => 'string', 'latitude' => 'string', 'longitude' => 'string', 'city' => 'string', 'state' => 'string', 'zip_code' => 'string', 'address' => 'string', 'status' => 'integer', ]; }
v.01