mkaverin / laravel-table-layout
There is no license information available for the latest version (1.1.0) of this package.
This package provides a simple way to display a resource as a table for your Laravel application.
Package info
github.com/mish-ka-mishka/laravel-table-layout
Language:Blade
pkg:composer/mkaverin/laravel-table-layout
1.1.0
2022-05-25 10:16 UTC
Requires
- php: ^7.4|^8.0
- illuminate/contracts: ^8.0|^9.0
- illuminate/http: ^8.0|^9.0
- illuminate/support: ^8.0|^9.0
This package is auto-updated.
Last update: 2026-03-10 23:34:20 UTC
README
This package provides a simple way to display a resource as a table for your Laravel application.
Installation
Run the following command from your project directory to add the dependency:
composer require mkaverin/laravel-table-layout
Laravel without auto-discovery
If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php:
'providers' => [ ... TableLayout\Providers\TableLayoutServiceProvider::class, ],
Configuration
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.