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/Address.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Address extends Model { use HasFactory; protected $table = "addresses"; protected $fillable = ['full_name', 'email', 'country_code', 'phone', 'country', 'address', 'user_id', 'state', 'city', 'zip_code', 'latitude', 'longitude']; protected $casts = [ 'id' => 'integer', 'full_name' => 'string', 'email' => 'string', 'country_code' => 'string', 'phone' => 'string', 'country' => 'string', 'address' => 'string', 'user_id' => 'integer', 'state' => 'string', 'city' => 'string', 'zip_code' => 'string', 'latitude' => 'string', 'longitude' => 'string', ]; public function user() { return $this->belongsTo(User::class); } }
v.01