Add Blog module to Citrus Platform: Created Blog resource with CRUD pages, schemas, and models. Implemented localization for English and Turkish, ensuring consistent user experience. Added migrations for blog categories, posts, and comments, including soft delete functionality. Enhanced table and form structures for better organization and usability.

This commit is contained in:
Ümit Tunç
2025-09-29 10:20:40 -03:00
parent a2087e7178
commit 79a1f5b746
20 changed files with 1145 additions and 70 deletions
@@ -0,0 +1,154 @@
<?php
namespace App\Filament\Admin\Resources\Blogs\Schemas;
use Filament\Forms\Components\Checkbox;
use Filament\Forms\Components\DateTimePicker;
use Filament\Forms\Components\FileUpload;
use Filament\Forms\Components\RichEditor;
use Filament\Schemas\Components\Section;
use Filament\Forms\Components\Select;
use Filament\Forms\Components\TagsInput;
use Filament\Forms\Components\Textarea;
use Filament\Forms\Components\TextInput;
use Filament\Schemas\Schema;
class BlogForm
{
public static function configure(Schema $schema): Schema
{
return $schema
->columns(3)
->schema([
// Sol kolon - Ana içerik (2 sütun genişliğinde)
Section::make(__('blog.content_section'))
->schema([
TextInput::make('title')
->label(__('blog.title_field'))
->required()
->maxLength(255)
->live(onBlur: true)
->afterStateUpdated(function (string $operation, $state, callable $set) {
if ($operation !== 'create') {
return;
}
$set('slug', \Str::slug($state));
}),
TextInput::make('slug')
->label(__('blog.slug_field'))
->required()
->maxLength(255)
->unique(ignoreRecord: true)
->rules(['alpha_dash'])
->helperText(__('blog.slug_helper')),
RichEditor::make('content')
->label(__('blog.content_field'))
->required()
->fileAttachmentsDisk('public')
->fileAttachmentsDirectory('blogs')
->fileAttachmentsVisibility('public')
->columnSpanFull(),
Textarea::make('excerpt')
->label(__('blog.excerpt_field'))
->rows(3)
->maxLength(500)
->helperText(__('blog.excerpt_helper'))
->columnSpanFull(),
])
->columnSpan(2)
->collapsible(false),
// Sağ kolon - Metadata ve öne çıkan görsel (1 sütun genişliğinde)
Section::make(__('blog.settings_section'))
->schema([
FileUpload::make('featured_image')
->label(__('blog.featured_image_field'))
->image()
->disk('public')
->directory('blogs/featured')
->visibility('public')
->imageEditor()
->imageEditorAspectRatios([
'16:9',
'4:3',
'1:1',
])
->helperText(__('blog.featured_image_helper'))
->columnSpanFull(),
Select::make('author_id')
->label(__('blog.author_field'))
->relationship('author', 'name')
->default(auth()->id())
->required()
->columnSpanFull(),
Select::make('category_id')
->label(__('blog.category_field'))
->relationship('category', 'name')
->searchable()
->preload()
->helperText(__('blog.category_helper'))
->columnSpanFull(),
TagsInput::make('tags')
->label(__('blog.tags_field'))
->helperText(__('blog.tags_helper'))
->columnSpanFull(),
DateTimePicker::make('published_at')
->label(__('blog.published_at_field'))
->displayFormat('d.m.Y H:i')
->helperText(__('blog.published_at_helper'))
->columnSpanFull(),
Select::make('status')
->label(__('blog.status_field'))
->options([
'draft' => __('blog.status_draft'),
'published' => __('blog.status_published'),
'archived' => __('blog.status_archived'),
])
->default('draft')
->required()
->columnSpanFull(),
Checkbox::make('is_featured')
->label(__('blog.is_featured_field'))
->helperText(__('blog.is_featured_helper'))
->columnSpanFull(),
Checkbox::make('allow_comments')
->label(__('blog.allow_comments_field'))
->default(true)
->helperText(__('blog.allow_comments_helper'))
->columnSpanFull(),
])
->columnSpan(1)
->collapsible(false),
// Alt kısım - SEO ayarları (tam genişlik)
Section::make(__('blog.seo_section'))
->schema([
TextInput::make('meta_title')
->label(__('blog.meta_title_field'))
->maxLength(60)
->helperText(__('blog.meta_title_helper')),
Textarea::make('meta_description')
->label(__('blog.meta_description_field'))
->rows(3)
->maxLength(160)
->helperText(__('blog.meta_description_helper'))
->columnSpanFull(),
])
->columns(2)
->columnSpanFull()
->collapsible(true)
->collapsed(true),
]);
}
}