Files
nexusphp/app/Filament/Resources/User/UserResource/RelationManagers/MedalsRelationManager.php
NekoCH 532f3bdb3f migration script
# Conflicts:
#	app/Filament/Resources/Torrent/AnnounceLogResource.php
2025-09-27 12:29:50 +08:00

58 lines
1.7 KiB
PHP

<?php
namespace App\Filament\Resources\User\UserResource\RelationManagers;
use Filament\Actions\Contracts\HasActions;
use Filament\Schemas\Schema;
use Filament\Forms\Components\TextInput;
use Filament\Tables\Columns\TextColumn;
use Filament\Tables\Columns\ImageColumn;
use Filament\Actions\DeleteAction;
use Filament\Actions\DeleteBulkAction;
use Filament\Forms;
use Filament\Resources\RelationManagers\RelationManager;
use Filament\Tables\Table;
use Filament\Tables;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\SoftDeletingScope;
class MedalsRelationManager extends RelationManager implements HasActions
{
protected static string $relationship = 'medals';
protected static ?string $recordTitleAttribute = 'name';
public function form(Schema $schema): Schema
{
return $schema
->components([
TextInput::make('name')
->required()
->maxLength(255),
]);
}
public function table(Table $table): Table
{
return $table
->columns([
TextColumn::make('name')->label(__('label.name')),
ImageColumn::make('image_large')->label(__('label.image')),
ImageColumn::make('expire_at')->label(__('label.expire_at')),
])
->filters([
//
])
->headerActions([
// Tables\Actions\CreateAction::make(),
])
->recordActions([
// Tables\Actions\EditAction::make(),
DeleteAction::make(),
])
->toolbarActions([
DeleteBulkAction::make(),
]);
}
}