On this page
Compiling assets
Helen follows Filament’s theming conventions. If you customize your admin theme with Tailwind CSS, ensure vendor views and PHP files that contain Tailwind classes are included in your build.
We use Tailwind CSS with Filament. If you are on Tailwind CSS v4, class scanning is configured from your CSS entry file using @source (instead of the content array in tailwind.config.js).
Add these source paths to your app stylesheet (for example resources/css/app.css):
1@import "tailwindcss";2 3@source "../../vendor/lara-zeus/helen/resources/views/**/*.blade.php";4@source "../../vendor/lara-zeus/helen/src/Filament/**/*.php";5@source "../../vendor/lara-zeus/helen/src/Facades/**/*.php";
If your stylesheet lives in a nested folder, adjust the ../../ prefix so it resolves to your application root before vendor/.
Zeus is an open-source project. Thanks to my sponsors for helping me maintain this project.