Plugins
Splade Integration
Integration of Splade Vue Components for Filament
Developer Tool
Dark theme support
Yes
Multi language support
Yes
Compatible with the latest version
Supported versions: 3.x
Documentation

Screenshot

Latest Stable Version PHP Version Require License Downloads

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

Screenshot Screenshot Screenshot Screenshot

#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.

Featured Plugins