Custom Filament Page to Download Excel Report

Filament 3
Also available in Filament 4/5 version

Filament can export records from tables by default. But if you want to have settings, you must use a Custom Page.

FilamentExamples ThumbBase - 2025-01-07T144958.151

Get the Source Code:

Only This Example

$9

One-time payment

Full source code for Custom Filament Page to Download Excel Report
Downloadable ZIP file with the source code
Lifetime access to this example
GitHub Sign in with GitHub to buy

Sign in first, then complete your $9 checkout.

Best value — all 172 examples

FilamentExamples Membership

$99 /year
or
$199 lifetime
Access to code of all 172 examples
Future new examples and updates included
FilaCheck Pro package licence included
MCP server included
View membership plans

30-day money-back guarantee

How it works

We have a custom Filament page with a form to select a date and a customer.

app/Filament/Pages/Download.php:

use Filament\Pages\Page;
use Filament\Forms\Form;
use App\Models\Customer;
use Filament\Forms\Components\Select;
use Filament\Forms\Components\DatePicker;
 
class Download extends Page
{
protected static ?string $navigationIcon = 'heroicon-o-document-text';
 
protected static string $view = 'filament.pages.download';
 
public ?array $data = [];
 
public function mount(): void
{
$this->form->fill();
}
 
public function form(Form $form): Form
{
return $form
->schema([
DatePicker::make('trade_date')
->minDate(now()->subMonths(2)->startOfMonth())
->maxDate(today()),
Select::make('customer')
->required()
->options(Customer::pluck('name', 'id')),
])
->statePath('data');
}
}

Next, we will work on:

  • Custom page View
  • Installing Laravel Excel package
  • Adding the Export logic
The FULL tutorial is available after the purchase: in the Readme file of the official repository you would get invited to.