get-tony/bs5-starter-kit

Complete Bootstrap 5 starter kit for Laravel - Professional UI components, SASS architecture, and authentication system. Perfect for enterprise and secure environments.

v1.1.0 2025-06-30 19:20 UTC

This package is auto-updated.

Last update: 2025-06-30 20:02:24 UTC


README

Latest Version on Packagist License: MIT Laravel PHP Version

A modern, production-ready Laravel starter kit built exclusively with Bootstrap 5 and SASS architecture. Clean, professional, and dependency-free.

โœจ What is BS5 Starter Kit?

BS5 Starter Kit is a pure Bootstrap 5 foundation for Laravel applications, designed for developers who want:

  • ๐ŸŽจ Bootstrap 5.3+ - Latest Bootstrap with all components and utilities
  • ๐Ÿ—๏ธ 7-1 SASS Architecture - Professional, maintainable stylesheet organization
  • ๐Ÿ” Authentication System - Complete login, registration, and user management
  • ๐Ÿงฉ Reusable Components - Professional Blade components ready for production
  • โšก JavaScript Utilities - Custom utilities built on Bootstrap's JavaScript
  • ๐ŸŽฏ Zero Dependencies - No additional JavaScript frameworks required

๐Ÿš€ Quick Start

New Project

composer create-project laravel/laravel my-app
cd my-app
composer require get-tony/bs5-starter-kit
php artisan bs5:install --preset=full
npm install && npm run build
php artisan serve

Existing Project

composer require get-tony/bs5-starter-kit
php artisan bs5:install --preset=standard
npm install && npm run build

๐ŸŽฏ What You Get

  • Complete Authentication - Login, registration, password reset, and profile management
  • Professional UI Components - Cards, buttons, alerts, modals, forms with Bootstrap styling
  • Responsive Design - Mobile-first, Bootstrap 5 responsive grid and components
  • SASS Architecture - Organized 7-1 SASS structure for scalable stylesheets
  • JavaScript Utilities - Toast notifications, confirm dialogs, and component helpers
  • Production Ready - Optimized for enterprise and professional applications

๐Ÿ”ง System Requirements

  • Laravel 10+ | 11+ | 12+
  • PHP 8.2+
  • Node.js 18+ and NPM
  • Composer 2.0+

๐Ÿ“š Installation Options

Preset Installations

# Minimal (Bootstrap only)
php artisan bs5:install --preset=minimal

# Standard (Bootstrap + SASS)
php artisan bs5:install --preset=standard

# Full (Bootstrap + SASS + Authentication)
php artisan bs5:install --preset=full

Individual Components

# Install specific components
php artisan bs5:install --bootstrap --sass
php artisan bs5:install --auth

๐ŸŽจ Your First Component

<x-app-layout>
    <div class="container my-5">
        <div class="row justify-content-center">
            <div class="col-lg-8">
                <div class="card shadow-sm">
                    <div class="card-header">
                        <h3 class="card-title mb-0">Welcome to BS5 Starter Kit!</h3>
                    </div>
                    <div class="card-body">
                        <p class="lead">Your Bootstrap 5 application is ready to build.</p>

                        <button class="btn btn-primary" onclick="BS5Kit.toast('Hello World!', 'success')">
                            Show Toast
                        </button>
                    </div>
                </div>
            </div>
        </div>
    </div>
</x-app-layout>

๐Ÿงช Testing & Quality Assurance

# Run all tests
./test

# Test specific components
./test phpunit
./test frontend
./test composer

๐Ÿ“– Documentation

๐ŸŽฏ For Developers

๐ŸŒŸ For Users & Community

๐ŸŒŸ Key Features

โœ… Production Ready

  • Comprehensive test suite for quality assurance
  • Enterprise-grade authentication system
  • Professional UI components and layouts
  • Optimized asset compilation with Vite

โšก Modern Stack

  • Bootstrap 5.3+ with latest features
  • SASS with 7-1 architecture
  • Modern JavaScript utilities
  • Laravel 10+, 11+, and 12+ support

๐ŸŽฏ Pure Bootstrap Foundation

  • No conflicting JavaScript frameworks
  • Clean, maintainable codebase
  • Professional enterprise styling
  • Fully responsive design system

โš ๏ธ Important Notes

  • Pure Bootstrap 5 - No additional JavaScript frameworks required
  • Enterprise Ready - Perfect for professional and secure environments
  • Dependency Free - Clean foundation you can build upon
  • Production Tested - Used in real-world applications

๐Ÿ“„ License

BS5 Starter Kit is open-sourced software licensed under the MIT license.

๐Ÿ”— Links

Ready to get started? Check out the Installation Guide and build your next Laravel application with Bootstrap 5!