My skeleton application for the Laravel framework. Includes SCSS stylings (basic) and Livewire.
chaoswebdev/laravel-kit is a Laravel package for my skeleton application for the laravel framework. includes scss stylings (basic) and livewire..
It currently has 1 GitHub stars and 96 downloads on Packagist (latest version v2.2.3).
Install it with composer require chaoswebdev/laravel-kit.
Discover more Laravel packages by chaoswebdev
or browse all Laravel packages to compare alternatives.
Last updated
A minimal, modern Laravel v13.x starter kit built for rapid development with clean defaults, Livewire v4, and SCSS-based styling utilities.
Built for developers who prefer Laravel with minimal frontend overhead, organized SCSS structure, and Livewire-first workflows.
npm i -D sass)cwdscss included via npmresources/viewsAPP_TIMEZONE back to .env and config/app.phpAmerica/Denveremail and usernamephp kit runs the interactive starter setup utility.
composer create-project chaoswebdev/laravel-kit my-project-name
cd my-project-name
php kit
git clone https://github.com/ChaosWebDev/cwd-laravel-kit.git your-project-name
cd your-project-name
rm -rf .git
# Windows PowerShell:
# ri .git -r -force
composer install
npm install && npm run dev
cp .env.example .env
php artisan key:generate
resources/styles/
app.scssresources/views/layouts/app.blade.php
database/migrations/
You can commit, version tag, and push using:
php artisan sync -m "MESSAGE" -b __
The -b (bump) option accepts:
major / maminor / mipatch / pThis provides lightweight semantic versioning and GitHub workflow automation directly from Artisan.
php artisan sync -m "Fixed navbar issue" -b p
php artisan sync -m "Added provider management" -b mi
php artisan sync -m "Refactored authentication system" -b ma
cwdscss is included by default and can be imported in several ways depending on your needs.
@use "cwdscss" as *;
Includes:
Outputs CSS.
@use "cwdscss/core" as *;
Includes:
Safe to use globally without outputting CSS.
@use "cwdscss/components";
Includes UI components and layout styles.
Outputs CSS.
@use "cwdscss/classes";
Includes utility helpers such as:
Outputs CSS.
GitHub: https://github.com/ChaosWebDev/cwd-laravel-kit
Laravel
https://laravel.com/docs/13.x/installation
Livewire
https://livewire.laravel.com/docs/4.x/quickstart
NativePHP
https://nativephp.com/docs/desktop/2/getting-started/introduction
Laravel MongoDB
https://github.com/mongodb/laravel-mongodb
This project is open-sourced software licensed under the MIT license.