Laravel View Generator adds the missing make:view
command to Laravel's commands. You can quickly create new views for your application.
Install via composer
composer require kakposoe/laravel-view-generator
If you use Laravel < 5.5, Add service provider to config/app.php
in providers
section
Kakposoe\LaravelViewGenerator\LaravelViewGeneratorServiceProvider::class,
Creating a view is as simple as running:
php artisan make:view index
This command will create /resources/views/index.blade.php
You can create a view in a folder by using dot
notation:
php artisan make:view admin.index
This will create any folders which have not been created already.
You can create a view which extends a layout using:
php artisan make:view index --layout=admin
Note: *You will be prompted to create a layouts
folder and the layout
file if they do not exist.
You can create a new view file with sections:
php artisan make:view index --section=content --section=styles