mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-04 11:45:00 +02:00
105 lines
2.5 KiB
PHP
105 lines
2.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Filament\RelationManagers\Auth;
|
|
|
|
use App\Filament\RelationManagers\BaseRelationManager;
|
|
use App\Filament\Resources\Auth\Permission as PermissionResource;
|
|
use App\Models\Auth\Permission;
|
|
use Filament\Forms\Form;
|
|
use Filament\Tables\Table;
|
|
|
|
/**
|
|
* Class PermissionRelationManager.
|
|
*/
|
|
abstract class PermissionRelationManager extends BaseRelationManager
|
|
{
|
|
/**
|
|
* The form to the actions.
|
|
*
|
|
* @param Form $form
|
|
* @return Form
|
|
*
|
|
* @noinspection PhpMissingParentCallCommonInspection
|
|
*/
|
|
public function form(Form $form): Form
|
|
{
|
|
return PermissionResource::form($form);
|
|
}
|
|
|
|
/**
|
|
* The index page of the resource.
|
|
*
|
|
* @param Table $table
|
|
* @return Table
|
|
*
|
|
* @noinspection PhpMissingParentCallCommonInspection
|
|
*/
|
|
public function table(Table $table): Table
|
|
{
|
|
return parent::table(
|
|
$table
|
|
->heading(PermissionResource::getPluralLabel())
|
|
->modelLabel(PermissionResource::getLabel())
|
|
->recordTitleAttribute(Permission::ATTRIBUTE_NAME)
|
|
->columns(PermissionResource::table($table)->getColumns())
|
|
->defaultSort(Permission::TABLE . '.' . Permission::ATTRIBUTE_ID, 'desc')
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Get the filters available for the relation.
|
|
*
|
|
* @return array
|
|
*
|
|
* @noinspection PhpMissingParentCallCommonInspection
|
|
*/
|
|
public static function getFilters(): array
|
|
{
|
|
return array_merge(
|
|
[],
|
|
PermissionResource::getFilters(),
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Get the actions available for the relation.
|
|
*
|
|
* @return array
|
|
*
|
|
* @noinspection PhpMissingParentCallCommonInspection
|
|
*/
|
|
public static function getActions(): array
|
|
{
|
|
return PermissionResource::getActions();
|
|
}
|
|
|
|
/**
|
|
* Get the bulk actions available for the relation.
|
|
*
|
|
* @return array
|
|
*
|
|
* @noinspection PhpMissingParentCallCommonInspection
|
|
*/
|
|
public static function getBulkActions(): array
|
|
{
|
|
return array_merge(
|
|
parent::getBulkActions(),
|
|
PermissionResource::getBulkActions(),
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Get the header actions available for the relation.
|
|
*
|
|
* @return array
|
|
*
|
|
* @noinspection PhpMissingParentCallCommonInspection
|
|
*/
|
|
public static function getHeaderActions(): array
|
|
{
|
|
return PermissionResource::getHeaderActions();
|
|
}
|
|
}
|