Download the PHP package smallerid/filament-exports without Composer
On this page you can find all versions of the php package smallerid/filament-exports. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download smallerid/filament-exports
More information about smallerid/filament-exports
Files in smallerid/filament-exports
Package filament-exports
Short Description Customizable exports for Filament Admin Panel
License MIT
Informations about the package filament-exports
Filament Exports
Customizable export and print functionality for Filament Admin Panel v3.
This package provides a bulk action and header action to export your filament tables easily.
Requirements
- PHP 8.1
- Filament 3.0
Dependencies
Installation
-
Install the package
- Copy assets
Configuring for Standalone Table Builder (Experimental)
To use this package in a standalone table builder instead of Filament Admin Panel you need to follow these steps. Otherwise, some features such as print and preview may not work properly.
-
Import
filament-export.css
in your/resources/app.css
-
Import
filament-export.js
in your/resources/app.js
- Compile your assets
Using
Simple Usage
Bulk Action
You can export selected rows with the bulk action.
Filament Admin Panel
Filament Table Builder
Header Action
You can filter, search, sort and export your table with the header action.
Filament Admin Panel
Filament Table Builder
Since ButtonAction is deprecated you may use this action with ->button() instead.
Full Usage
Both actions provide functions for configuration.
You can also use default bulk action and header action functions to customize actions.
Performance Tips for Large Datasets
- Since header action does server-side pagination you may choose header action over bulk action.
- You may disable preview.
- You may enable direct download.
Configuration
Publish configuration
You can configure these settings:
Overriding Views
Publish views
This package has two views:
-
"components\table_view.blade.php" view is used for preview.
-
"pdf.blade.php" view is used as pdf export template.
- "print.blade.php" view is used as print template.
Using Custom Variables In Templates
or use closures
Then use them in the templates as regular blade variables:
Using Snappy
By default, this package uses dompdf as pdf generator.
If you want to use Snappy instead you need to install barryvdh/laravel-snappy to your project and configure it yourself. (See barryvdh/laravel-snappy for more information.)
To use snappy for PDF exports:
- You can simply add ->snappy() to your actions.
or
- You can update the config file to use it as default.
All versions of filament-exports with dependencies
filament/tables Version ^3.2
barryvdh/laravel-dompdf Version ^2.0
spatie/simple-excel Version >=3.2.0
phpoffice/phpword Version ^1.3