A Laravel Nova tool for creating responsive tables.
ostheneo/responsivetable is a Laravel package for a laravel nova tool for creating responsive tables..
It currently has 4 GitHub stars and 3.514 downloads on Packagist (latest version 1.0.0).
Install it with composer require ostheneo/responsivetable.
Discover more Laravel packages by ostheneo
or browse all Laravel packages to compare alternatives.
Last updated
Laravel Nova ResponsiveTable is a Nova tool that enhances your Nova tables with the ability to hide and show columns in response to screen size changes. This makes your tables responsive and more user-friendly.
Install the package using Composer:
composer require ostheneo/responsivetable
Register the tool in your NovaServiceProvider:
// In app/Providers/NovaServiceProvider.php
// ...
protected function tools()
{
return [
// ...
new \OsTheNeo\ResponsiveTable\ResponsiveTable,
];
}
// ...
Configure your Nova resources to use ResponsiveTable:
In your Nova resource file, set the $tableStyle property to "responsive" to enable the responsive column visibility:
public static $tableStyle = "responsive";
That's it! Your Nova resource tables will now be responsive, and users can toggle column visibility based on screen size changes.

Laravel Nova ResponsiveTable is open-source software licensed under the MIT license.
If you have any questions, issues, or feature requests, please create an issue on the GitHub repository. Contributions are also welcome through pull requests.
Laravel Nova ResponsiveTable is developed and maintained by OsTheNeo.