A dynamic table component for Laravel Livewire
itsmeduard/laravel-livewire-tables-modified is a Laravel package for a dynamic table component for laravel livewire.
It currently has 0 GitHub stars and 13 downloads on Packagist (latest version v2.1.1).
Install it with composer require itsmeduard/laravel-livewire-tables-modified.
Discover more Laravel packages by itsmeduard
or browse all Laravel packages to compare alternatives.
Last updated

A dynamic Laravel Livewire component for data tables.


You can install the package via composer:
composer require rappasoft/laravel-livewire-tables
You must also have Alpine.js version 3 or greater installed and available to the component.
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
{
protected $model = User::class;
public function columns(): array
{
return [
Column::make('Name')
->sortable()
->searchable(),
Column::make('E-mail', 'email')
->sortable()
->searchable(),
Column::make('Verified', 'email_verified_at')
->sortable(),
];
}
}
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please e-mail [email protected] to report any security vulnerabilities instead of the issue tracker.
The MIT License (MIT). Please see License File for more information.