rappasoft/laravel-livewire-tables

A dynamic table component for Laravel Livewire

Maintainers

👁 rappa819

Package info

github.com/rappasoft/laravel-livewire-tables

pkg:composer/rappasoft/laravel-livewire-tables

Fund package maintenance!

rappasoft

Statistics

Installs: 2 920 853

Dependents: 30

Suggesters: 0

Stars: 1 975

Open Issues: 3

v3.7.3 2025-05-03 02:24 UTC

Requires

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 74beb4c2672e024000d41ecad8a17b4ab8c934bd

  • Anthony Rappa <rappa819.woop@gmail.com>
  • Joe McElwee <joe.woop@lowerrocklabs.com>

laraveldatatablestableslivewirerappasoft

This package is auto-updated.

Last update: 2026-06-08 19:41:53 UTC


README

👁 Package Logo

👁 Latest Version on Packagist
👁 Styling
👁 Tests
👁 Total Downloads
👁 codecov
👁 PHP Stan Level 6

Enjoying this package? Buy me a beer 🍺

A dynamic Laravel Livewire component for data tables.

👁 Dark Mode

👁 Full Table

Bootstrap 4 Demo | Bootstrap 5 Demo | Tailwind Demo | Demo Repository

Installation

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.

Documentation and Usage Instructions

See the documentation for detailed installation and usage instructions.

Basic Example

<?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 configure(): void
 {
 $this->setPrimaryKey('id');
 }

 public function columns(): array
 {
 return [
 Column::make('ID', 'id')
 ->sortable(),
 Column::make('Name')
 ->sortable(),
 ];
 }
}

See advanced example

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please e-mail anthony@rappasoft.com to report any security vulnerabilities instead of the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.