Implement Product and ProductCategory Resources: Created new Filament resources for managing products and product categories, including pages for listing, creating, and editing. Added schemas for forms and tables, integrated translation support, and established relationships between products and categories. Enhanced the navigation structure to include product and service links in the frontend menu, improving overall site organization and user experience.

This commit is contained in:
Ümit Tunç
2025-12-30 22:16:45 +03:00
parent a5a3248c69
commit a85e6eebe0
33 changed files with 1919 additions and 549 deletions
+71
View File
@@ -0,0 +1,71 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
use App\Traits\HasTranslations;
class Product extends Model
{
use HasFactory, SoftDeletes, HasTranslations;
protected $fillable = [
'title',
'slug',
'type',
'product_category_id',
'hero_image',
'content',
'view_template',
'sort_order',
'is_active',
];
protected $translatable = [
'title',
'content',
];
protected $casts = [
'is_active' => 'boolean',
'title' => 'array',
'content' => 'array',
];
public static function boot()
{
parent::boot();
static::saving(function ($model) {
// Eğer title boşsa ve translations içinden bir title geliyorsa onu ata
if (empty($model->title)) {
$translations = request()->input('translations');
$defaultLocale = app()->getLocale();
if (is_array($translations)) {
if (!empty($translations[$defaultLocale]['title'])) {
$model->title = $translations[$defaultLocale]['title'];
} else {
foreach ($translations as $locale => $fields) {
if (!empty($fields['title'])) {
$model->title = $fields['title'];
break;
}
}
}
}
if (empty($model->title)) {
$model->title = [];
}
}
});
}
public function category()
{
return $this->belongsTo(ProductCategory::class, 'product_category_id');
}
}
+79
View File
@@ -0,0 +1,79 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
use App\Traits\HasTranslations;
class ProductCategory extends Model
{
use HasFactory, SoftDeletes, HasTranslations;
protected $fillable = [
'title',
'slug',
'parent_id',
'sort_order',
'is_active',
];
protected $translatable = [
'title',
];
protected $casts = [
'is_active' => 'boolean',
'title' => 'array',
];
public static function boot()
{
parent::boot();
static::saving(function ($model) {
// Eğer title boşsa ve translations içinden bir title geliyorsa onu ata
if (empty($model->title)) {
$translations = request()->input('translations');
$defaultLocale = app()->getLocale();
if (is_array($translations)) {
// Önce varsayılan dildeki çeviriye bak
if (!empty($translations[$defaultLocale]['title'])) {
$model->title = $translations[$defaultLocale]['title'];
}
// Yoksa ilk bulduğu dolu çeviriyi al
else {
foreach ($translations as $locale => $fields) {
if (!empty($fields['title'])) {
$model->title = $fields['title'];
break;
}
}
}
}
// Hala boşsa boş bir array veya string ata (veritabanı hatasını önlemek için)
if (empty($model->title)) {
$model->title = [];
}
}
});
}
public function parent()
{
return $this->belongsTo(ProductCategory::class, 'parent_id');
}
public function children()
{
return $this->hasMany(ProductCategory::class, 'parent_id');
}
public function products()
{
return $this->hasMany(Product::class);
}
}