v8enginephp / tabler
Table component for Laravel Models
Installs: 30
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/v8enginephp/tabler
This package is auto-updated.
Last update: 2025-10-05 04:01:51 UTC
README
Make Your Index Tables Like Piece of Cake
Installation
Install Tabler with composer
composer require v8enginephp/tabler
Usage/Examples
use V8\Tabler; class Test { use Tabler; protected static function getDefaultColumns(): array { return [ tabler_column('slug','column header',function($row){ // This function executes the number of your records and passes $row argument as the current row record // by default if You dont fill this argument Table will fill with $row->slug return $row->id; }), ]; } }
In view
<?=Test::renderTable($records)?>
In Blade
{!! Test::renderTable($records) !!}