Splade Integration
Integration of Splade Vue Components for Filament
Author:
Fady Mondy
Documentation
- Screenshots
- Installation
- Usage
- Register Splade Exceptions
- Publish Assets
- Support
- Docs
- Changelog
- Security
- Credits
- License

Integration of Splade Vue Components for Filament
NOTE: this project still out of filament style, and we are working to move style to filament for all component and merge the component to the Form/Table Components.
#Screenshots

#Installation
composer require tomatophp/filament-splade
after install your package please run this command
php artisan filament-splade:install
now you need to build your js assets
yarn
yarn build
#Usage
to make any page or resource interact with splade you just need to use this trait
use TomatoPHP\FilamentSplade\Traits\InteractsWithSplade;
now you can use any splade component inside your resource.
if you like to use splade everywhere reigster the plugin on /app/Providers/Filament/AdminPanelProvider.php
->plugin(\TomatoPHP\FilamentSplade\FilamentSpladePlugin::make())
and make sure that you are global_allow => true on the config file.
#Register Splade Exceptions
on your boostrap/app.php file add this line
->withExceptions(function (Exceptions $exceptions) {
$exceptions->renderable(function (\Illuminate\Foundation\Exceptions\Handler $e) {
return \ProtoneMedia\Splade\SpladeCore::exceptionHandler($e);
});
})
#Publish Assets
you can publish config file by use this command
php artisan vendor:publish --tag="filament-splade-config"
#Support
you can join our discord server to get support TomatoPHP
#Docs
you can check docs of this package on Docs
#Changelog
Please see CHANGELOG for more information on what has changed recently.
#Security
Please see SECURITY for more information about security.
#Credits
#License
The MIT License (MIT). Please see License File for more information.
The author
From the same author
Discord Notifications
Send notifications to a Discord channel using the native FilamentPHP Notification Facade class
Author:
Fady Mondy
Tenancy Multi-database
Tenancy multi-database integration for FilamentPHP
Author:
Fady Mondy
Menu Generator
Menu view generator using view component
Author:
Fady Mondy
Translations Manager
Manage your translation with DB and cache, you can scan an collect translation strings like `trans()` and `__()`, and translate them using UI
Author:
Fady Mondy
Featured Plugins
A selection of plugins curated by the Filament team
Custom Dashboards
Let your users build and share their own dashboards with a drag-and-drop interface. Define your data sources in PHP and let them do the rest.
Filament
Advanced Tables (formerly Filter Sets)
Supercharge your tables with powerful features like user-customizable views, quick filters, multi-column sorting, advanced table searching, convenient view management, and more. Compatible with Resource Panel Tables, Relation Managers, Table Widgets, and Table Builder!
Kenneth Sese
Custom Fields
Eliminate custom field migrations forever. Let your users create and manage form fields directly in Filament admin panels with 20+ built-in field types, validation, and zero database changes.
Relaticle