lanciweb/laravel-make-view
Laravel package adding an artisan make:view command to generate Blade view files. Create single views using dot notation (auto-creates nested folders) or scaffold conventional CRUD resource views (index, show, create, edit) with --crud/-c.
resources/views/backoffice/admin) for multi-tenancy or modular applications (e.g., admin vs. public dashboards).index.blade.php, edit.blade.php) for Laravel Eloquent models, aligning with rapid prototyping or MVP launches.Adopt When:
Look Elsewhere If:
For Executives:
"This package cuts view creation time by 80% for Laravel apps, accelerating frontend delivery without adding technical debt. For example, generating a CRUD interface for a ‘Posts’ resource—normally a 15-minute manual task—takes one command (php artisan make:view posts -c). Ideal for MVPs, admin panels, or multi-tenant systems where UI consistency is critical. The MIT license and zero runtime overhead make it a low-risk, high-reward tool to standardize our Blade template workflow."
For Engineering:
*"Laravel MakeView automates repetitive Blade file creation with dot-notation paths (e.g., guests.home → resources/views/guests/home.blade.php) and CRUD scaffolding. Key benefits:
touch + manual folder creation with a single CLI command.admin/posts).make: commands.
Tradeoff: No dynamic content injection (e.g., auto-filling form fields)—we’d still need to pair with Laravel’s model binding or Livewire for full CRUD automation. Recommended for teams prioritizing frontend velocity over ultra-custom templates."*How can I help you explore Laravel packages today?