Edit File: IntroHowWork.php
<?php namespace App\Models; use App\Traits\ModelTrait; use Spatie\Translatable\HasTranslations; class IntroHowWork extends BaseModel { use HasTranslations, ModelTrait; const IMAGEPATH = 'how_works'; protected $fillable = ['title', 'image']; public $translatable = ['title']; }
Back to File Manager