103 lines
3.2 KiB
PHP
103 lines
3.2 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources;
|
|
|
|
use App\Filament\Resources\CategoryResource\Pages\CreateCategory;
|
|
use App\Filament\Resources\CategoryResource\Pages\EditCategory;
|
|
use App\Filament\Resources\CategoryResource\Pages\ListCategories;
|
|
use App\Models\Category;
|
|
use Filament\Actions\Action;
|
|
use Filament\Actions\BulkActionGroup;
|
|
use Filament\Actions\DeleteAction;
|
|
use Filament\Actions\DeleteBulkAction;
|
|
use Filament\Actions\EditAction;
|
|
use Filament\Actions\ViewAction;
|
|
use Filament\Forms\Components\Select;
|
|
use Filament\Forms\Components\TextInput;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Schemas\Components\Utilities\Set;
|
|
use Filament\Schemas\Schema;
|
|
use Filament\Tables\Columns\IconColumn;
|
|
use Filament\Tables\Columns\TextColumn;
|
|
use Filament\Tables\Table;
|
|
use Illuminate\Support\Str;
|
|
|
|
class CategoryResource extends Resource
|
|
{
|
|
protected static ?string $model = Category::class;
|
|
|
|
protected static string|\BackedEnum|null $navigationIcon = 'heroicon-o-ticket';
|
|
|
|
protected static string|\UnitEnum|null $navigationGroup = 'Content';
|
|
|
|
public static function form(Schema $schema): Schema
|
|
{
|
|
return $schema
|
|
->components([
|
|
TextInput::make('name')
|
|
->required()
|
|
->live(1)
|
|
->afterStateUpdated(fn (Set $set, ?string $state) => $set('slug', Str::slug($state))),
|
|
TextInput::make('slug')->required(),
|
|
Select::make('is_active')
|
|
->options([
|
|
0 => 'Inactive',
|
|
1 => 'Active',
|
|
])
|
|
->columnSpanFull()
|
|
->required()
|
|
->default(1),
|
|
]);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return $table
|
|
->columns([
|
|
TextColumn::make('name'),
|
|
TextColumn::make('slug'),
|
|
TextColumn::make('blogs_count')
|
|
->label('Blogs')
|
|
->getStateUsing(function (Category $record): int {
|
|
return $record->blogs()->count();
|
|
}),
|
|
IconColumn::make('is_active')->label('Active')->boolean(),
|
|
])
|
|
->filters([
|
|
//
|
|
])
|
|
->recordActions([
|
|
ViewAction::make(),
|
|
EditAction::make(),
|
|
DeleteAction::make(),
|
|
Action::make('toggleStatus')
|
|
->label('Toggle Status')
|
|
->icon('heroicon-o-power')
|
|
->action(function (Category $record) {
|
|
$record->update(['is_active' => ! $record->is_active]);
|
|
}),
|
|
])
|
|
->toolbarActions([
|
|
BulkActionGroup::make([
|
|
DeleteBulkAction::make(),
|
|
]),
|
|
]);
|
|
}
|
|
|
|
public static function getRelations(): array
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => ListCategories::route('/'),
|
|
'create' => CreateCategory::route('/create'),
|
|
'edit' => EditCategory::route('/{record}/edit'),
|
|
];
|
|
}
|
|
}
|