| Install | |
|---|---|
composer require emild/laravel-livewire-tables |
|
| Latest Version: | 1.21.3 |
| PHP: | ^7.4|^8.0 |

A dynamic Laravel Livewire component for data tables.


You can install the package via composer:
composer require rappasoft/laravel-livewire-tables
Please see the rest of the installation instructions.
<?php
namespace App\Http\Livewire\Admin\User;
use App\Domains\Auth\Models\User;
use Illuminate\Database\Eloquent\Builder;
use Rappasoft\LaravelLivewireTables\DataTableComponent;
use Rappasoft\LaravelLivewireTables\Views\Column;
class UsersTable extends DataTableComponent
{
public function columns(): array
{
return [
Column::make('Name')
->sortable()
->searchable(),
Column::make('E-mail', 'email')
->sortable()
->searchable(),
Column::make('Verified', 'email_verified_at')
->sortable(),
];
}
public function query(): Builder
{
return User::query();
}
}
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please e-mail anthony@rappasoft.com to report any security vulnerabilities instead of the issue tracker.
The MIT License (MIT). Please see License File for more information.