This package provides a simple way to display a resource as a table for your Laravel application.
mkaverin/laravel-table-layout is a Laravel package for this package provides a simple way to display a resource as a table for your laravel application..
It currently has 0 GitHub stars and 233 downloads on Packagist (latest version 1.1.0).
Install it with composer require mkaverin/laravel-table-layout.
Discover more Laravel packages by mkaverin
or browse all Laravel packages to compare alternatives.
Last updated
This package provides a simple way to display a resource as a table for your Laravel application.
Run the following command from your project directory to add the dependency:
composer require mkaverin/laravel-table-layout
If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php:
'providers' => [
...
TableLayout\Providers\TableLayoutServiceProvider::class,
],
Copy the package config to your local config with the publish command:
php artisan vendor:publish --provider="TableLayout\Providers\TableLayoutServiceProvider"
You can find published layout in resources/views/table.blade.php.