Edit File: InterestOption.php
<?php namespace App\Models; use App\Traits\ModelTrait; use Spatie\Translatable\HasTranslations; class InterestOption extends BaseModel { use HasTranslations , ModelTrait; const IMAGEPATH = 'interestoptions' ; protected $fillable = ['name' , 'interest_id']; public $translatable = ['name']; protected $with = ['interest'] ; public function interest() { return $this->belongsTo(Interest::class); } }
Back to File Manager