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