kakposoe/laravel-view-generator

A laravel view generator

1.2.1 2020-04-24 08:30 UTC

This package is auto-updated.

Last update: 2024-04-24 17:41:08 UTC


README

Build Status StyleCI

Laravel View Generator adds the missing make:view command to Laravel's commands. You can quickly create new views for your application.

Installation

Install via composer

composer require kakposoe/laravel-view-generator

Register Service Provider

If you use Laravel < 5.5, Add service provider to config/app.php in providers section

Kakposoe\LaravelViewGenerator\LaravelViewGeneratorServiceProvider::class,

How to use

Creating a view is as simple as running:

php artisan make:view index

This command will create /resources/views/index.blade.php

Create a view inside a folder

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.

Extending a layout

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.

Create a view with sections

You can create a new view file with sections:

php artisan make:view index --section=content --section=styles