Edit File: IntroFqs.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Relations\BelongsTo; use App\Traits\ModelTrait; use Spatie\Translatable\HasTranslations; class IntroFqs extends BaseModel { use HasTranslations, ModelTrait; protected $fillable = ['title', 'description', 'intro_fqs_category_id']; public $translatable = ['title', 'description']; protected $with = ['category']; /** * * @return BelongsTo */ public function category(): BelongsTo { return $this->belongsTo(IntroFqsCategory::class, 'intro_fqs_category_id', 'id'); } }
Back to File Manager