inerba / filament-excel

Excel Export for Filament Admin Resources

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Filament Excel

Latest Version on Packagist Software License GitHub Workflow Status Total Downloads

Easy Excel exports for Filament Admin.

Installation

Install via Composer. This will download the package and Laravel Excel.

Requires PHP > 8.1 and Filament > 2.0

composer install pxlrbt/filament-excel

Usage

Quickstart

Go to your Filament resource and add the ExportAction to the tables bulk actions:

<?php

namespace App\Filament\Resources;

use pxlrbt\FilamentExcel\Actions\ExportAction;
use Filament\Resources\Resource;
use Filament\Resources\Table;

class User extends Resource
{  
    public static function table(Table $table): Table
    {
        return $table
            ->columns([
                //   
            ])
            ->bulkActions([
                ExportAction::make('export')
            ]);
    }
}

Options

Optionally configure your export:

    ExportAction::make('export')
        ->label('Export Data') // Button label
        ->withWriterType(Excel::CSV) // Export type: CSV, XLS, XLSX
        ->except('password') // Exclude fields
        ->withFilename('test') // Set a filename
        ->withHeadings() // Get headings from table or form
        ->withHeadings(['ID', 'E-Mail']) // Or set headings explicitly
        ->askForFilename(date('Y-m-d') . '-export') // Let the user choose a filename. You may pass a default.
        ->askForWriterType(Excel::XLS)  // Let the user choose an export type. You may pass a default.
        ->allFields() // Export all fields on model
        ->onlyTableFields() // Export only fields from table (Default)
        ->onlyFormFields(),  // Export only fields from form
    ]);

Custom exports

If you need even more customization you can use a custom export class:

ExportAction::make('export')
    ->label('Export Data')
    ->withExportable(Export::class)

Important data will be injected into the constructor automatically:

<?php

namespace App\Exports;

use Maatwebsite\Excel\Concerns\FromCollection;

class Export implements FromCollection
{
    public function __construct($records, $model, $livewire, $action)
    {
        $this->records = $records;
    }

    public function collection()
    {
        return $this->records;
    }
}

Contributing

If you want to contribute to this packages, you may want to test it in a real Filament project:

  • Fork this repository to your GitHub account.
  • Create a Filament app locally.
  • Clone your fork in your Filament app's root directory.
  • In the /filament-excel directory, create a branch for your fix, e.g. fix/error-message.

Install the packages in your app's composer.json:

"require": {
    "pxlrbt/filament-excel": "dev-fix/error-message as main-dev",
},
"repositories": [
    {
        "type": "path",
        "url": "filament-excel"
    }
]

Now, run composer update.

Credits

This package is based on the excellent Laravel Nova Excel Package by SpartnerNL and ported to Filament.

About

Excel Export for Filament Admin Resources

License:MIT License


Languages

Language:PHP 100.0%