Integrations
Set up Master CSS in Laravel
Guide to setting up Master CSS in your Laravel project.
Create a project
If you don't have a Laravel project, create one first.
laravel new my-appcd my-appAdd Master CSS
Run the installer in static mode from the Laravel project root.
npm create @master/css@rc -- --framework laravel --mode static --yesLaunch server
Run Laravel and Vite development servers.
composer run devHello world
Now style your first Blade view using Master CSS syntax.
127.0.0.1:8000
Hello World
<h1 class="m:2xl italic font:5xl font:heavy text:neutral"> Hello World</h1>