18 lines
391 B
PHP
18 lines
391 B
PHP
<?php
|
|
|
|
namespace App\Models\Website;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Spatie\Translatable\HasTranslations;
|
|
|
|
class Service extends Model
|
|
{
|
|
use HasFactory, HasTranslations;
|
|
|
|
protected $table = 'website_services';
|
|
protected $fillable = ['imageSrc'];
|
|
|
|
protected array $translatable = ['title', 'description'];
|
|
}
|