LaravelPackages.net
Acme Inc.
Toggle sidebar
mkaverin/laravel-table-layout

This package provides a simple way to display a resource as a table for your Laravel application.

233
0
1.1.0
About mkaverin/laravel-table-layout

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

Laravel table layout

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.

Comments