mkaverin / laravel-table-layout
This package provides a simple way to display a resource as a table for your Laravel application.
Installs: 231
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Language:Blade
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: 2025-03-10 21:15:16 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
.