A Universal Modular Laravel 12 Starter Kit with Livewire, TailwindCSS, Filament Admin, Multilingual Blog (EN/HI/AR), RTL Support & Role-Based Permissions
View Live Demo: https://laracorekit.mobrilz.digital/
Explore all 175+ implemented UI components at:
UI Showcase - Full Component Library: https://laracorekit.mobrilz.digital/ui-showcase/
Component Categories:
- Typography: https://laracorekit.mobrilz.digital/ui-showcase/typography - Headings, paragraphs, lists, code
- Buttons: https://laracorekit.mobrilz.digital/ui-showcase/buttons - All button styles & states
- Forms: https://laracorekit.mobrilz.digital/ui-showcase/forms - Inputs, selects, validation, pickers
- Navigation: https://laracorekit.mobrilz.digital/ui-showcase/navigation - Header, sidebar, breadcrumbs, tabs
- Layouts: https://laracorekit.mobrilz.digital/ui-showcase/layouts - Cards, grids, containers, split layouts
- Data Display: https://laracorekit.mobrilz.digital/ui-showcase/data-display - Tables, badges, avatars, timeline
- Feedback: https://laracorekit.mobrilz.digital/ui-showcase/feedback - Alerts, modals, toasts, progress
- Charts: https://laracorekit.mobrilz.digital/ui-showcase/charts - Line, bar, pie, radar, area charts
- Media: https://laracorekit.mobrilz.digital/ui-showcase/media - File upload, gallery, lightbox, video, audio
- Auth: https://laracorekit.mobrilz.digital/ui-showcase/auth - Login, register, 2FA, profile, sessions
- Landing Pages: https://laracorekit.mobrilz.digital/ui-showcase/landing-hero - Heroes, pricing, testimonials, contact
- E-commerce: https://laracorekit.mobrilz.digital/ui-showcase/ecommerce-products - Products, cart, reviews, checkout
- Utilities: https://laracorekit.mobrilz.digital/ui-showcase/utilities - QR code, clipboard, export, download
- Advanced: https://laracorekit.mobrilz.digital/ui-showcase/advanced-drag-drop - Kanban, drag-drop, calendar, file explorer
LaraCoreKit is a modular, production-ready Laravel 12 Starter Kit for modern full-stack applications. It includes first-class module-based architecture, allowing built-in features (User, Blog, Settings, Media) and optional addons (E-commerce, Payments, Analytics) to plug into your project cleanly.
Designed for speed, scalability, multilingual apps, admin dashboards, and enterprise-grade role/permission management, LaraCoreKit provides everything you need to start any serious Laravel project.
- Laravel 12 (latest modern backend framework)
- Livewire 3 (dynamic frontend components with Alpine.js bundled)
- TailwindCSS 4 (full utility-first styling)
- Filament Admin v3 (beautiful admin panel)
- Spatie Permission (RBAC)
- Spatie Media Library (file uploads & image handling)
- Sanctum (API authentication)
- Vite (fast dev bundler)
- MySQL / PostgreSQL / SQLite ready
LaraCoreKit supports module-based development, where each feature lives inside its own module (with its own routes, migrations, Livewire components, Filament Resources, translations, config, etc.)
| Module | Admin | Frontend | Description |
|---|---|---|---|
| Core | Yes | - | Bootstrapping, module loader, locale, layouts |
| Auth | Yes | Yes | Login, register, email verify, 2FA, Sanctum API |
| User | Yes | Yes | User profiles, role/permission assignment |
| Blog | Yes | Yes | Multilingual blog system (EN/HI/AR, JSON fields) |
| Settings | Yes | API | Site config, SEO defaults, language settings |
| Media | Yes | Yes | File uploads, media management |
- Ecommerce (multilingual products + checkout)
- Payment Gateways (Stripe, Razorpay, PayPal, Paytm, Paystack)
- Analytics Dashboard (admin widgets + user insights)
- Notifications system
- Search (Meilisearch / fulltext)
- API v2 / GraphQL
Modules can be enabled/disabled, versioned, moved to separate repositories, or installed via Composer.
- Laravel Breeze scaffolding
- Email verification
- Password reset
- Sanctum token authentication
- Two-factor authentication ready
- CSRF protection
- Brute-force throttling
- User profile with avatar
- Account settings
- Role & Permission Management (Spatie)
- Activity logging support
- Public or private user profiles
- Filament UserResource
- Multilingual blog (EN / HI / AR)
- JSON-based translation fields
- Livewire frontend blog pages
- Filament admin for blog CRUD
- SEO-friendly slugs
- Draft / Published / Archived statuses
- Rich text editor support
- RTL support for Arabic pages
- Filament Admin Settings Page
- Multilingual site configuration
- SEO defaults (title, meta, social sharing)
- Logo, favicon, theme color settings
- Image/file uploads
- Automatic thumbnail generation
- S3/local storage support
- Media organizer (categories, tags)
- Full RBAC using spatie/laravel-permission
- Module-level CRUD permissions
- User-specific permission assignment
- Admin can assign roles per module
- Filament Permission Management UI
- Laravel Telescope (debugging)
- Laravel Pint (PSR-12 formatting)
- Debugbar (development only)
- IDE Helper
- PHPUnit test suite
- Scribe API documentation generator
- Meta tags management
- Sitemap generator (Spatie Sitemap)
- Open Graph + Twitter Cards
- Google Analytics integration ready
- Filament-native
->translatable()fields - JSON stored translations in same row
- Livewire auto-switch rendering
- RTL layout switch for Arabic
- Locale middleware
- Frontend locale switcher
<html lang="{{ app()->getLocale() }}"
dir="{{ app()->getLocale() == 'ar' ? 'rtl' : 'ltr' }}">LaraCoreKit/
├── app/
│ ├── Console/
│ ├── Exceptions/
│ ├── Http/
│ │ ├── Controllers/
│ │ └── Middleware/
│ ├── Providers/
│ │ ├── AppServiceProvider.php
│ │ └── ModuleServiceProvider.php # registers modules at boot
│ ├── Filament/ # global Filament customizations (if any)
│ └── Models/ # core models (User, etc.) — keep minimal
│
├── bootstrap/
│
├── config/
│ ├── app.php
│ ├── modules.php # list of default modules & metadata
│ └── ... # other configs
│
├── modules/ # default bundled modules (local path)
│ ├── Core/
│ │ ├── composer.json
│ │ └── src/
│ │ ├── CoreServiceProvider.php
│ │ ├── Console/
│ │ ├── Http/
│ │ └── ...
│ │
│ ├── Auth/
│ │ ├── composer.json
│ │ └── src/
│ │ ├── AuthServiceProvider.php
│ │ ├── Http/Controllers/
│ │ └── Views/
│ │
│ ├── User/
│ │ ├── composer.json
│ │ └── src/
│ │ ├── UserServiceProvider.php
│ │ ├── Models/ # e.g., Profile (if separate)
│ │ ├── Filament/Resources/ # UserResource.php
│ │ ├── Http/Controllers/
│ │ └── Database/
│ │ ├── migrations/
│ │ └── seeders/
│ │
│ ├── Blog/
│ │ ├── composer.json
│ │ └── src/
│ │ ├── BlogServiceProvider.php
│ │ ├── Models/ # Blog.php
│ │ ├── Filament/Resources/ # BlogResource.php
│ │ ├── Http/Controllers/
│ │ ├── Http/Livewire/ # Livewire components for frontend editors/listing
│ │ ├── resources/
│ │ │ ├── views/
│ │ │ └── lang/
│ │ └── Database/
│ │ ├── migrations/
│ │ └── seeders/
│ │
│ ├── Settings/
│ │ ├── composer.json
│ │ └── src/
│ │ ├── SettingsServiceProvider.php
│ │ ├── Filament/Pages/ # SettingsPage.php (Filament single page)
│ │ └── Database/
│ │
│ └── Media/
│ ├── composer.json
│ └── src/
│ ├── MediaServiceProvider.php
│ ├── Models/ # if using custom media model
│ └── Http/Controllers/ # upload endpoints
│
├── database/
│ ├── migrations/ # core migrations
│ ├── seeders/ # calls module seeders if needed
│ └── factories/
│
├── resources/
│ ├── views/ # main layout wrappers & shared partials
│ ├── css/ # tailwind entry (resources/css/app.css)
│ └── js/ # vite entry (resources/js/app.js)
│
├── routes/
│ ├── web.php # core web routes and module bootstrapping
│ ├── api.php
│ └── filament.php # special filament routes (if needed)
│
├── tests/
│ ├── Feature/
│ └── Unit/
│
├── .github/
│ ├── workflows/ # CI (tests, lint)
│ └── ISSUE_TEMPLATE.md
│
├── docs/ # documentation (architecture, modules guide)
│
├── vendor/
│
├── composer.json
├── package.json
├── vite.config.js
├── .env.example
└── README.md
git clone https://github.com/ProgrammerNomad/LaraCoreKit.git
cd LaraCoreKitcomposer install
npm installcp .env.example .env
php artisan key:generateUpdate database settings in .env.
php artisan migrate --seedIncludes:
- Admin user (optional)
- Demo blog posts
- Default roles & permissions
Create an admin user:
php artisan filament:userDefault Admin URL: /admin
Use the provided SetLocale middleware.
Available locales: en, hi, ar
- screenshots/dashboard.png
- screenshots/blog-editor.png
- screenshots/rtl-layout.png
- Breeze - Authentication scaffolding
- Sanctum - API authentication
- Telescope - Application debugging
- Sail (optional) - Docker development environment
- Pint - Code style formatter
- laravel-permission - Role and permission management
- laravel-medialibrary - Media/file management
- laravel-sitemap - Sitemap generation
- laravel-backup - Database and file backups
- Filament Admin v3 - Admin panel
- Filament Translatable Plugin - Multilingual content
- laravel/debugbar - Development debugging
- laravel-ide-helper - IDE autocompletion
- GraphQL API support
- Blog categories & tags
- Advanced analytics dashboard
- Social login (Google, GitHub)
- Import/export tools
- Audit log module
- Search indexing module
- Module Marketplace (addon installer UI)
git clone https://github.com/yourusername/LaraCoreKit.git
cd LaraCoreKit
# Install dependencies
composer install
npm install
# Setup environment
cp .env.example .env
php artisan key:generate
# Setup database (SQLite for local dev)
touch database/database.sqlite
php artisan migrate --seed
# Build assets
npm run build
# Start server
php artisan serveAccess at: http://localhost:8000
Create admin user:
php artisan filament:userAdmin panel: http://localhost:8000/admin
See all 175+ components at:
http://localhost:8000/ui-showcase/
Website: https://laracorekit.mobrilz.digital/
Admin Panel: https://laracorekit.mobrilz.digital/admin
Contact us for demo credentials if needed.
| Feature | Included | Docs |
|---|---|---|
| Modular Architecture | ✅ | See modules/ |
| Admin Panel (Filament) | ✅ | /admin |
| Blog System | ✅ | /blog |
| Multilingual (EN/HI/AR) | ✅ | Core module |
| RTL Support | ✅ | Arabic theme |
| Role-Based Permissions | ✅ | Spatie Permission |
| File Uploads | ✅ | Media module |
| API Ready (Sanctum) | ✅ | /api/v1/* |
| 175+ UI Components | ✅ | /ui-showcase/ |
| Dark Mode | ✅ | Alpine.js toggle |
| TailwindCSS 4 | ✅ | All components |
| Vite Bundling | ✅ | Fast dev build |
We welcome all contributions!
- Fork this repo
- Create a feature branch
- Commit changes
- Open a Pull Request
Follow PSR-12 and good coding practices.
This project follows the Contributor Covenant code of conduct.
LaraCoreKit is open-source software licensed under the MIT License.
Shiv Singh (ProgrammerNomad)
GitHub: https://github.com/ProgrammerNomad
If this project helps you:
- Star the repo
- Contribute improvements
- Share with the community
Thank you for supporting open-source!
Happy Coding — Build Something Amazing!