heading(RoleResource::getPluralLabel()) ->modelLabel(RoleResource::getLabel()) ->recordTitleAttribute(Role::ATTRIBUTE_NAME) ->columns(RoleResource::table($table)->getColumns()) ->defaultSort(Role::TABLE . '.' . Role::ATTRIBUTE_ID, 'desc') ); } /** * Get the filters available for the relation. * * @return array * * @noinspection PhpMissingParentCallCommonInspection */ public static function getFilters(): array { return array_merge( [], RoleResource::getFilters(), ); } /** * Get the actions available for the relation. * * @return array * * @noinspection PhpMissingParentCallCommonInspection */ public static function getActions(): array { return [ ViewAction::make(), ]; } /** * Get the bulk actions available for the relation. * * @return array * * @noinspection PhpMissingParentCallCommonInspection */ public static function getBulkActions(): array { return array_merge( parent::getBulkActions(), RoleResource::getBulkActions(), ); } /** * Get the header actions available for the relation. * * @return array * * @noinspection PhpMissingParentCallCommonInspection */ public static function getHeaderActions(): array { return RoleResource::getHeaderActions(); } }