chaoswebdev/laravel-kit

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

v1.2.1 2025-06-04 19:15 UTC

This package is auto-updated.

Last update: 2025-06-04 22:08:06 UTC


README

Laravel Livewire SCSS License: MITGitHub StarsTotal Downloads

A minimal, modern Laravel v12.* starter kit built for rapid development with clean defaults, Livewire v3, and SCSS-based styling utilities.

📦 Features

  • ✅ Laravel 12.*
  • ✅ Livewire v3
  • ✅ SCSS-ready via Vite (npm i -D sass)
  • ✅ Utility-based SCSS (customized Bootstrap-style classes)
  • ✅ Livewire views organized under resources/views
  • ✅ Modular SCSS structure with components/, layout/, themes/, utilities/, views/
  • ✅ User migration separated into its own clean file
  • ✅ Added APP_TIMEZONE back to .env and configs/app.php. Defaults to America/Denver
  • ✅ Commented out migrations for sessions and cache
  • ✅ Set sessions and cache to file instead of database

🚀 Installation

git clone https://github.com/ChaosWebDev/cwd-laravel-kit.git 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
composer install
npm install && npm run dev
cp .env.example .env
php artisan key:generate

📁 Directory Highlights

  • resources/styles/ → SCSS split by layout, components, themes, utilities
  • resources/views/ → Updated default Livewire structure
  • resources/views/components/layouts/app.blade.php → Updated default Livewire layout location
  • database/migrations/users table isolated in its own migration

🔧 Roadmap / Ideas

  • Add additional basic Livewire components
  • Add additional basic Laravel components

📎 Repo

GitHub: ChaosWebDev/cwd-laravel-kit