Hello @madum_tv
What did you tried and where do you got a problem?
I suspect you can check the Laravel documentation for the frontend opties and see which tooling mostly match what you need.
i try to follow this kind of video... and the instructions here: but nothing works... my objective is also to use adminlte with laralvel fortify and laravel permissions... but with bulma graphics... I don't find a lot of info for that...
regards
Here's how you can use Bulma CSS in a freshly installed Laravel v10 with Vite.
npm install bulma
resources/css/app.css
file, add this line @import 'bulma/css/bulma.css';
at the top.@vite(['resources/css/app.css', 'resources/js/app.js'])
. For example inside resources/views/layouts/app.blade.php
npm run dev
or npm run build
and you're good to goNote: If you want to use Bulma on resources/views/welcome.blade.php
, just add the line in step 3.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community