chaoswebdev/laravel-kit

My skeleton application for the Laravel framework. Includes SCSS stylings (basic) and Livewire.

Maintainers

Package info

github.com/ChaosWebDev/cwd-laravel-kit

Type:project

pkg:composer/chaoswebdev/laravel-kit

Statistics

Installs: 89

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

v2.2.1 2026-05-12 18:16 UTC

README

Laravel Livewire SCSS License: MIT GitHub Stars Total Downloads

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.

📦 Features / Requirements

  • ✅ PHP v8.4+
  • ✅ Laravel 13.x
  • ✅ Livewire v4.x
  • ✅ SCSS-ready via Vite (npm i -D sass)
  • ✅ SCSS utility package cwdscss included via npm
  • ✅ Livewire views organized under resources/views
  • ✅ User migration separated into its own clean file
  • ✅ Config migration for key/value application settings
  • ✅ Added APP_TIMEZONE back to .env and config/app.php
  • ✅ Defaults timezone to America/Denver
  • ✅ User model includes both email and username
  • ✅ Compatible with Laravel MongoDB drivers
  • ✅ Built-in semantic version sync tooling

🧰 Stack

  • Laravel 13
  • Livewire 4
  • Vite
  • SCSS
  • Alpine.js

🚀 Installation

php kit runs the interactive starter setup utility.

Create Project

composer create-project chaoswebdev/laravel-kit my-project-name

cd my-project-name

php kit

Clone Manually

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

📁 Directory Highlights

  • resources/styles/

    • Intended for SCSS partials forwarded into app.scss
  • resources/views/layouts/app.blade.php

    • Default Livewire layout location
  • database/migrations/

    • User migration isolated into its own clean migration file

🔖 Git Version Workflow

You can commit, version tag, and push using:

php artisan sync -m "MESSAGE" -b __

The -b (bump) option accepts:

  • major / ma
  • minor / mi
  • patch / p

This provides lightweight semantic versioning and GitHub workflow automation directly from Artisan.

Examples

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

🎨 Styling

cwdscss is included by default and can be imported in several ways depending on your needs.

Import Everything

@use "cwdscss" as *;

Includes:

  • Utilities
  • Classes
  • Components
  • Themes

Outputs CSS.

Core Only (No CSS Output)

@use "cwdscss/core" as *;

Includes:

  • Variables
  • Mixins
  • Themes

Safe to use globally without outputting CSS.

Components

@use "cwdscss/components";

Includes UI components and layout styles.

Outputs CSS.

Utility Classes

@use "cwdscss/classes";

Includes utility helpers such as:

  • Spacing
  • Flex utilities
  • Typography helpers

Outputs CSS.

📎 Repository

GitHub: https://github.com/ChaosWebDev/cwd-laravel-kit

📚 Related Documentation

📄 License

This project is open-sourced software licensed under the MIT license.