laraveldaily/larastarters
Larastarters installs a Laravel starter kit (Breeze Tailwind or Laravel UI Bootstrap) plus ready-made design themes. Adds common app features like profile management, users list table, sample static page, and a two-level sidebar menu. For new projects only.
composer require laraveldaily/larastarters --dev
php artisan larastarters:install
php artisan migrate:fresh --seed
This sets up auth tables and creates a demo user (admin@example.com / password: password).π First use case: Instantly bootstrap a functional admin dashboard with login, registration, profile editing, a users list, and a static "About" page β ready for prototyping or MVP validation.
resources/views and resources/css. Modify layouts (e.g., resources/views/layouts/app.blade.php) or extend Blade components β no package-specific APIs needed post-install.routes/web.php using the provided middleware (auth, verified).app/Http/Livewire/UsersTable.php (or equivalent) and connecting to your models.app/Http/Controllers/ProfileController.php) β itβs standard Laravel code, not abstracted.@section('content') in resources/views/home.blade.php) with your real pages.npm run dev or npm run build after install. Ensure vite.config.js exists at project root.larastarters:install more than once will overwrite files. Backup custom views before re-running.--php_version=./vendor/bin/sail flag to avoid php binary path mismatches during asset compilation steps.__() β publish translations via php artisan vendor:publish --tag=laravel-translations if localizing.vite.config.js includes tailwindcss and purge configs.resources/js/bootstrap.js loads it if using legacy plugins.routes/auth.php is included in routes/web.php and check for middleware conflicts in app/Http/Kernel.php.resources/views/, public/css/, and public/js/, plus update vite.config.js imports β the package doesnβt support runtime theme switching.How can I help you explore Laravel packages today?