rabi-narayan-124131 / blade-base
A minimal, modern Laravel starter kit featuring Blade templates, Tailwind CSS, Vite, Pest for testing, and Laravel Debugbar. Instantly preview the UI with no initial database setup. Includes fast asset builds, pre-configured debugging, and a clean, developer-friendly structure—perfect for rapid Lara
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Language:Blade
Type:project
pkg:composer/rabi-narayan-124131/blade-base
Requires
- php: ^8.2
- laravel/framework: ^12.0
- laravel/tinker: ^2.10.1
Requires (Dev)
- barryvdh/laravel-debugbar: ^3.15
- fakerphp/faker: ^1.23
- laravel/pail: ^1.2.2
- laravel/pint: ^1.13
- laravel/sail: ^1.41
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.6
- pestphp/pest: ^3.8
- pestphp/pest-plugin-laravel: ^3.2
This package is not auto-updated.
Last update: 2025-12-27 00:33:41 UTC
README
📌 About BladeBase
BladeBase Starter Kit is a minimalistic Laravel boilerplate providing a solid foundation with Blade templates, Tailwind CSS, Vite, Pest for testing, and Laravel Debugbar for debugging.
🚀 Why BladeBase?
- 🎉 Quick Start: No initial database setup needed; view
welcome.blade.phpinstantly. - 🎨 Modern Styling: Tailwind CSS integrated for responsive designs.
- ⚡ Fast Build System: Uses Vite for asset compilation.
- 🐞 Optimized Debugging: Laravel Debugbar pre-configured.
- 🧪 Testing-Ready: Ships with Pest PHP for unit and feature testing.
⚡️ Quick Start with Laravel Installer
Create a new project using the Laravel installer and BladeBase:
laravel new project-name --using=rabi-narayan-124131/blade-base
cd project-name
Then follow these steps:
1️⃣ Run Application Without Database
php artisan serve
or
composer run dev
🔗 View BladeBase UI instantly at
http://127.0.0.1:8000
2️⃣ Configure Database & Apply Migrations
php artisan migrate php artisan setup:db
💾 Automatically switches session, queue, and cache to database storage.
3️⃣ Install Frontend Dependencies & Build Assets
npm install npm run build
🎨 Tailwind CSS, Vite, and dependencies are installed.
4️⃣ Start Development Mode
composer run dev
⚡ Runs Laravel, queues, and Vite simultaneously.
📦 Download as ZIP
Alternatively, download the project as a ZIP file:
1️⃣ Click the green Code button on GitHub, then select Download ZIP.
2️⃣ Extract the ZIP file to your desired location.
3️⃣ Open a terminal in the extracted folder.
⚠️ Important:
If you downloaded the project as a ZIP file, do not run the "Clone & Install Dependencies" step below.
Start directly from thecomposer installcommand inside your extracted folder, then continue with the rest of the steps.
📖 Manual Installation Guide
1️⃣ Clone & Install Dependencies
git clone https://github.com/rabi-narayan-124131/blade-base.git
cd blade-base
composer install
Note: If you downloaded as ZIP, skip
git cloneandcd blade-base. Just runcomposer installin your extracted folder.
2️⃣ Setup Environment File
Copy the .env.example file and rename it to .env:
On Linux/macOS:
cp .env.example .env
On Windows:
copy .env.example .env
Then generate the application key:
php artisan key:generate
3️⃣ Run Application Without Database
php artisan serve
or
composer run dev
🔗 View BladeBase UI instantly at
http://127.0.0.1:8000
4️⃣ Configure Database & Apply Migrations
php artisan migrate php artisan setup:db
💾 Automatically switches session, queue, and cache to database storage.
5️⃣ Install Frontend Dependencies & Build Assets
npm install npm run build
🎨 Tailwind CSS, Vite, and dependencies are installed.
6️⃣ Start Development Mode
composer run dev
⚡ Runs Laravel, queues, and Vite simultaneously.
🛠 Core Dependencies
"require": { "php": "^8.2", "laravel/framework": "^12.0", "laravel/tinker": "^2.10.1" }
🎓 Learning Laravel
- 📚 Laravel Docs — Extensive documentation covering all core features.
🔐 Security & Contributing
- 🛡 Report vulnerabilities to Rabi Narayan.
⚡ Final Thoughts
✔ No initial database required — Explore instantly!
✔ Optimized Laravel development experience with debugging tools included.
✔ Fast builds with Vite and Tailwind CSS.
✔ Perfect for developers who need a clean, lightweight Laravel setup.
Get started with BladeBase today! 🚀
🛠 What’s Improved?
- Cleaner UI with sections clearly separated.
- More structured installation steps for better readability.
- Formatted features and dependencies for easy reference.
- Improved accessibility with icons and concise descriptions.