24 lines
665 B
PHP
24 lines
665 B
PHP
<x-layout name="admin">
|
|
|
|
@livewire('datatable', [
|
|
'model' => \App\Models\Card::class,
|
|
'default_sort' => 'id',
|
|
'route_create' => 'admin.card.create',
|
|
'route_edit' => 'admin.card.edit',
|
|
'route_delete' => 'admin.card.delete',
|
|
'columns' => [
|
|
'id' => '#',
|
|
'body' => 'Body',
|
|
'subject' => 'Subject',
|
|
'subject_type' => 'Subject Type',
|
|
'raid.name' => 'Raid',
|
|
],
|
|
'sort_columns' => [
|
|
'id' => 'id',
|
|
'body' => 'body',
|
|
'subject' => ['character.name', 'class', 'role'],
|
|
'raid.name' => 'raid.name',
|
|
]
|
|
])
|
|
|
|
</x-layout>
|