Livewire tables installed

This commit is contained in:
Benjamin Takats
2022-11-29 23:37:57 +01:00
parent 069e4411ea
commit 3f5e714177
25 changed files with 708 additions and 38 deletions

View File

@@ -0,0 +1,26 @@
<?php
namespace App\Http\Livewire\Tables;
use App\Models\City;
use Rappasoft\LaravelLivewireTables\DataTableComponent;
use Rappasoft\LaravelLivewireTables\Views\Column;
class CityTable extends DataTableComponent
{
protected $model = City::class;
public function configure(): void
{
$this->setPrimaryKey('id');
}
public function columns(): array
{
return [
Column::make("Stadt Name", "name")
->sortable()
->searchable(),
];
}
}