1.7. 资源 - Viewing records
这是一篇协同翻译的文章,你可以点击『我来翻译』按钮来参与翻译。
Panel Builder - Resources - Viewing records
Creating a resource with a View page
To create a new resource with a View page, you can use the --view
flag:
php artisan make:filament-resource User --view
Using an infolist instead of a disabled form
By default, the View page will display a disabled form with the record's data. If you preferred to display the record's data in an "infolist", you can use define an infolist()
method on the resource class:
use Filament\Infolists;
use Filament\Infolists\Infolist;
public static function infolist(Infolist $infolist): Infolist
{
return $infolist
->schema([
Infolists\Components\TextEntry::make('name'),
Infolists\Components\TextEntry::make('email'),
Infolists\Components\TextEntry::make('notes')
->columnSpanFull(),
]);
}
The schema()
method is used to define the structure of your infolist. It is an array of entries and layout components, in the order they should appear in your infolist.
Check out the Infolists docs for a guide on how to build infolists with Filament.
Adding a View page to an existing resource
If you want to add a View page to an existing resource, create a new page in your resource's Pages
directory:
php artisan make:filament-page ViewUser --resource=UserResource --type=ViewRecord
You must register this new page in your resource's getPages()
method:
public static function getPages(): array
{
return [
'index' => Pages\ListUsers::route('/'),
'create' => Pages\CreateUser::route('/create'),
'view' => Pages\ViewUser::route('/{record}'),
'edit' => Pages\EditUser::route('/{record}/edit'),
];
}
Viewing records in modals
If your resource is simple, you may wish to view records in modals rather than on the View page. If this is the case, you can just delete the view page.
If your resource doesn't contain a ViewAction
, you can add one to the $table->actions()
array:
use Filament\Tables;
use Filament\Tables\Table;
public static function table(Table $table): Table
{
return $table
->columns([
// ...
])
->actions([
Tables\Actions\ViewAction::make(),
// ...
]);
}
Customizing data before filling the form
You may wish to modify the data from a record before it is filled into the form. To do this, you may define a mutateFormDataBeforeFill()
method on the View page class to modify the $data
array, and return the modified version before it is filled into the form:
protected function mutateFormDataBeforeFill(array $data): array
{
$data['user_id'] = auth()->id();
return $data;
}
Alternatively, if you're viewing records in a modal action, check out the Actions documentation.
Authorization
For authorization, Filament will observe any model policies that are registered in your app.
Users may access the View page if the view()
method of the model policy returns true
.
Custom view
For further customization opportunities, you can override the static $view
property on the page class to a custom view in your app:
protected static string $view = 'filament.resources.users.pages.view-user';
This assumes that you have created a view at resources/views/filament/resources/users/pages/view-user.blade.php
.
Here's a basic example of what that view might contain:
<x-filament-panels::page>
@if ($this->hasInfolist())
{{ $this->infolist }}
@else
{{ $this->form }}
@endif
@if (count($relationManagers = $this->getRelationManagers()))
<x-filament-panels::resources.relation-managers
:active-manager="$activeRelationManager"
:managers="$relationManagers"
:owner-record="$record"
:page-class="static::class"
/>
@endif
</x-filament-panels::page>
To see everything that the default view contains, you can check the vendor/filament/filament/resources/views/resources/pages/view-record.blade.php
file in your project.
本文中的所有译文仅用于学习和交流目的,转载请务必注明文章译者、出处、和本文链接
我们的翻译工作遵照 CC 协议,如果我们的工作有侵犯到您的权益,请及时联系我们。
推荐文章: