20 lines
493 B
PHP
20 lines
493 B
PHP
<x-layout name="admin">
|
|
|
|
@livewire('datatable', [
|
|
'model' => \App\Models\Admin::class,
|
|
'default_sort' => 'id',
|
|
'columns' => [
|
|
'id' => '#',
|
|
'username' => 'Username',
|
|
'created_at' => 'Created',
|
|
'updated_at' => 'Updated',
|
|
],
|
|
'sort_columns' => [
|
|
'id' => 'id',
|
|
'username' => 'username',
|
|
'created_at' => 'created_at',
|
|
'updated_at' => 'updated_at'
|
|
]
|
|
])
|
|
|
|
</x-layout>
|