A dynamic Laravel Livewire component for data tables.
You can install the package via composer:
composer require rappasoft/laravel-livewire-tables
See the documentation for detailed installation and usage 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();
}
}
- Bootstrap 4 Template
- Bootstrap 5 Template
- Sorting By Relationships
- User Column Selection
- Drag & Drop (beta)
- Column Search
- Greater Configurability
- Collection/Query Support
- Test Suite (WIP)
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.