89 lines
2.6 KiB
PHP
89 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\FooterNavLinks;
|
|
|
|
use App\Filament\Resources\FooterNavLinks\Pages\ManageFooterNavLinks;
|
|
use App\Models\FooterNavLink;
|
|
use BackedEnum;
|
|
use Filament\Actions\BulkActionGroup;
|
|
use Filament\Actions\DeleteAction;
|
|
use Filament\Actions\DeleteBulkAction;
|
|
use Filament\Actions\EditAction;
|
|
use Filament\Forms\Components\TextInput;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Schemas\Schema;
|
|
use Filament\Support\Icons\Heroicon;
|
|
use Filament\Tables\Columns\TextColumn;
|
|
use Filament\Tables\Table;
|
|
|
|
class FooterNavLinkResource extends Resource
|
|
{
|
|
protected static ?string $model = FooterNavLink::class;
|
|
|
|
protected static string|BackedEnum|null $navigationIcon = Heroicon::OutlinedLink;
|
|
|
|
protected static ?string $navigationLabel = 'Footer baglanyşyklary';
|
|
|
|
protected static string|\UnitEnum|null $navigationGroup = 'Sahypa mazmunu';
|
|
|
|
protected static ?int $navigationSort = 4;
|
|
|
|
public static function form(Schema $schema): Schema
|
|
{
|
|
return $schema
|
|
->components([
|
|
TextInput::make('label')
|
|
->label('Ýazgy')
|
|
->required(),
|
|
TextInput::make('url')
|
|
->label('URL')
|
|
->required()
|
|
->url(),
|
|
TextInput::make('sort_order')
|
|
->label('Tertip')
|
|
->required()
|
|
->numeric()
|
|
->default(0),
|
|
]);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return $table
|
|
->columns([
|
|
TextColumn::make('label')
|
|
->label('Ýazgy')
|
|
->searchable(),
|
|
TextColumn::make('url')
|
|
->label('URL')
|
|
->searchable(),
|
|
TextColumn::make('sort_order')
|
|
->label('Tertip')
|
|
->numeric()
|
|
->sortable(),
|
|
TextColumn::make('created_at')
|
|
->dateTime()
|
|
->sortable()
|
|
->toggleable(isToggledHiddenByDefault: true),
|
|
])
|
|
->defaultSort('sort_order')
|
|
->filters([])
|
|
->recordActions([
|
|
EditAction::make(),
|
|
DeleteAction::make(),
|
|
])
|
|
->toolbarActions([
|
|
BulkActionGroup::make([
|
|
DeleteBulkAction::make(),
|
|
]),
|
|
]);
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => ManageFooterNavLinks::route('/'),
|
|
];
|
|
}
|
|
}
|