sapistudio / laraveldeck
There is no license information available for the latest version (1.0.1.1) of this package.
A package to install Jetstream with Bootstrap
1.0.1.1
2025-04-05 00:37 UTC
Requires
- php: ^8.0
- laravel/framework: ^11.31
- laravel/jetstream: ^5.3
- laravel/sanctum: ^4.0
- spatie/laravel-menu: ^4.2
- spatie/laravel-permission: ^6.16
This package is not auto-updated.
Last update: 2025-04-05 07:00:26 UTC
README
LaravelDeck is a developer-first, modular installer package for Laravel control panels. It automates setup for roles, permissions, Jetstream + Bootstrap, Livewire, and additional UI tooling such as EasePick, Tabler, and more — all via a single artisan command.
📦 Features
- 🔹 Jetstream installation with Livewire (and Bootstrap!)
- 🔹 Full Spatie permission system integration
- 🔹 Super Admin role & user seeding
- 🔹 EasePick + custom datepicker installer (no Shadow DOM)
- 🔹 Smart trait injection into models
- 🔹 PostCSS auto-backup and restore
- 🔹 Zero Tailwind. All Bootstrap.
🚀 Installation
composer require sapistudio/laraveldeck
🛠Usage
LaravelDeck exposes a single entry-point command:
php artisan laraveldeck:manage {component}
Available Components:
install_bootstrap
→ Installs Jetstream + Bootstrap + Tablerinstall_permissions
→ Adds Spatie permissions, traits, and migrationsadd_user
→ Creates a Super Admin user with selected role
You’ll be prompted step-by-step through each setup.
âš™ Example: Full Setup
php artisan laraveldeck:manage install_bootstrap php artisan laraveldeck:manage install_permissions php artisan laraveldeck:manage add_user
🧩 File Structure
Commands/Installer.php
– The core installer logicTraits/
– Trait injections for modelsComponents/Bootstrap/
– Jetstream overrides (Bootstrap based)Components/UserRoles/
– Role/User management logicEnums/RoleEnum.php
– Centralized rolesHelpers/updateConfigFile.php
– Utility for config persistence
🧠Requirements
- Laravel 11+
- Node.js (for Vite + npm tasks)
- Git (used to clone EasePick repo)
🧰 Helper
You can use the helper class for static info:
use SapiStudio\LaravelDeck\Helpers; LaravelDeck::version(); // returns current version LaravelDeck::components(); // available installable components
📄 License
MIT © YourName or Company.