Level 8
Nice just in time for my project. Thanks. One question how do you use the theme you selected? lets say Yeti?
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
In Laravel 5.5 and bootstrat/bootswatch 4:
first install Laravel 5.5 Frontend Preset for Boostrap 4
composer require laravelnews/laravel-twbs4
next, switch to bs4:
php artisan preset bootstrap4-auth
edit resources/assets/js/boostrap.js:
// window.$ = window.jQuery = require('jquery/dist/jquery.slim');
// Full jQuery
window.$ = window.jQuery = require('jquery');
edit resources/assets/sass/app.scss (for theme litera) :
// Fonts
@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,600");
// Variables
//@import "variables";
// Bootswatch Variables for your chosen theme
@import "node_modules/bootswatch/dist/litera/variables";
// Bootstrap
@import "~bootstrap/scss/bootstrap";
// Bootswatch theme main CSS files
@import "node_modules/bootswatch/dist/litera/bootswatch";
next install
npm install bootswatch
npm run dev
Please or to participate in this conversation.