Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 487 Bytes

readme.md

File metadata and controls

22 lines (14 loc) · 487 Bytes

php artisan make:command MakeViewCommand

App Console Commands

Replace MakeViewCommand.php

Gist Url

Creating views

# Create a view 'home.blade.php' in the default directory
php artisan make:view home

# Create a view 'home.blade.php' in a subdirectory ('pages')
php artisan make:view pages.home