parsaaghayi-backend/app/Models/Website/ProjectCategory.php

18 lines
406 B
PHP

<?php
namespace App\Models\Website;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Spatie\Translatable\HasTranslations;
class ProjectCategory extends Model
{
use HasFactory, HasTranslations;
protected $table = 'website_project_categories';
protected $fillable = ['image'];
protected array $translatable = ['title', 'description'];
}