mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
92 lines
3.1 KiB
PHP
92 lines
3.1 KiB
PHP
<?php
|
|
|
|
namespace App\Filament\Resources\System;
|
|
|
|
use App\Filament\Resources\System\AgentDenyResource\Pages;
|
|
use App\Filament\Resources\System\AgentDenyResource\RelationManagers;
|
|
use App\Models\AgentDeny;
|
|
use Filament\Forms;
|
|
use Filament\Forms\Form;
|
|
use Filament\Resources\Resource;
|
|
use Filament\Tables\Table;
|
|
use Filament\Tables;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\SoftDeletingScope;
|
|
|
|
class AgentDenyResource extends Resource
|
|
{
|
|
protected static ?string $model = AgentDeny::class;
|
|
|
|
protected static ?string $navigationIcon = 'heroicon-o-no-symbol';
|
|
|
|
protected static ?string $navigationGroup = 'System';
|
|
|
|
protected static ?int $navigationSort = 5;
|
|
|
|
public static function getNavigationLabel(): string
|
|
{
|
|
return __('admin.sidebar.agent_denies');
|
|
}
|
|
|
|
public static function getBreadcrumb(): string
|
|
{
|
|
return self::getNavigationLabel();
|
|
}
|
|
|
|
public static function form(Form $form): Form
|
|
{
|
|
return $form
|
|
->schema([
|
|
Forms\Components\Select::make('family_id')->label('Allow family')
|
|
->relationship('family', 'family')->required()->label(__('label.agent_allow.family')),
|
|
Forms\Components\TextInput::make('name')->required()->label(__('label.name')),
|
|
Forms\Components\TextInput::make('peer_id')->required()->label(__('label.agent_deny.peer_id')),
|
|
Forms\Components\TextInput::make('agent')->required()->label(__('label.agent_deny.agent')),
|
|
Forms\Components\Textarea::make('comment')->label(__('label.comment')),
|
|
]);
|
|
}
|
|
|
|
public static function table(Table $table): Table
|
|
{
|
|
return $table
|
|
->columns([
|
|
Tables\Columns\TextColumn::make('id')->sortable(),
|
|
Tables\Columns\TextColumn::make('family.family')->label(__('label.agent_allow.family')),
|
|
Tables\Columns\TextColumn::make('name')->searchable()->label(__('label.name')),
|
|
Tables\Columns\TextColumn::make('peer_id')->searchable()->label(__('label.agent_deny.peer_id')),
|
|
Tables\Columns\TextColumn::make('agent')->searchable()->label(__('label.agent_deny.agent')),
|
|
])
|
|
->defaultSort('id', 'desc')
|
|
->filters([
|
|
//
|
|
])
|
|
->actions([
|
|
Tables\Actions\EditAction::make(),
|
|
Tables\Actions\DeleteAction::make()->using(function ($record) {
|
|
$record->delete();
|
|
clear_agent_allow_deny_cache();
|
|
return redirect(self::getUrl());
|
|
})
|
|
])
|
|
->bulkActions([
|
|
Tables\Actions\DeleteBulkAction::make(),
|
|
]);
|
|
}
|
|
|
|
public static function getRelations(): array
|
|
{
|
|
return [
|
|
//
|
|
];
|
|
}
|
|
|
|
public static function getPages(): array
|
|
{
|
|
return [
|
|
'index' => Pages\ListAgentDenies::route('/'),
|
|
'create' => Pages\CreateAgentDeny::route('/create'),
|
|
'edit' => Pages\EditAgentDeny::route('/{record}/edit'),
|
|
];
|
|
}
|
|
}
|