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.

1.1.0 2022-05-25 10:16 UTC

This package is auto-updated.

Last update: 2024-04-14 09:21:29 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.