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