marcelweidum/filament-back-button

Brings a back button to a resource view/edit page

Maintainers

Package info

github.com/MarcelWeidum/filament-back-button

Homepage

Issues

pkg:composer/marcelweidum/filament-back-button

Fund package maintenance!

MarcelWeidum

Statistics

Installs: 1

Dependents: 0

Suggesters: 0

Stars: 0

v1.0.0-beta.1 2026-04-21 15:40 UTC

This package is auto-updated.

Last update: 2026-04-21 15:51:57 UTC


README

Latest Version on Packagist Total Downloads GitHub Code Style Action Status Filament 4.11.x Filament 5.6.x

Brings a back button to a resource view/edit page

Caution

The current release is a beta release — use it cautiously in production.

Filament Back Button cover

Installation

You can install the package via composer:

composer require marcelweidum/filament-back-button

Important

If you have not set up a custom theme and are using Filament Panels follow the instructions in the Filament Docs first.

After setting up a custom theme add the plugin's views to your theme css file or your app's css file if using the standalone packages.

@source '../../../../vendor/marcelweidum/filament-back-button/resources/**/*.blade.php';

You can publish the config file with:

php artisan vendor:publish --tag="filament-back-button-config"

Optionally, you can publish the views using

php artisan vendor:publish --tag="filament-back-button-views"

This is the contents of the published config file:

return [
    'all_resources' => true,
    'resources' => [
        // App\Filament\Resources\UserResource::class,
    ],
];

Set all_resources to false to only show the back button on specific Filament resources listed in resources.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.