kozsuper / filament-table-views
A powerful table views package for Laravel Filament
1.0.1
2025-04-04 14:24 UTC
Requires
- php: ^8.1
- filament/filament: ^3.0
- guava/filament-icon-picker: ^2.0
- laravel/framework: ^10.0|^11.0|^12.0
- spatie/laravel-package-tools: ^1.9
README
A powerful package for managing table views in Laravel Filament applications.
This package is originally developed by AureusERP and modified for standalone usage.
Live Demo
You can experience the Table Views module in action on the official AureusERP demo site:
Screenshots
Features
- Create and manage custom table views
- Save favorite views
- Public and private views
- Custom filters and sorting
- User-specific views
- Easy integration with Filament
Requirements
- PHP 8.1 or higher
- Laravel 10.0 or higher
- Filament 3.0 or higher
Installation
You can install the package via composer:
composer require kozsuper/filament-table-views
Publish the migrations:
php artisan vendor:publish --tag=table-views-migrations
Usage
- Run migrations:
php artisan migrate
- Use the trait in your Filament resources:
use KozSuper\TableViews\Filament\Concerns\HasTableViews; class YourResource extends Resource { use HasTableViews; // Your resource code... }
Configuration
You can publish the config file with:
php artisan vendor:publish --provider="KozSuper\TableViews\TableViewsServiceProvider" --tag="config"
License
This package is open-sourced software licensed under the MIT License.
Attribution
This package is based on the Table Views module from AureusERP, which is also licensed under the MIT License.