Laravel 5 Clear Views Cache
There is now a php artisan view:clear
command for this task since Laravel 5.1
To get all the artisan command, type...
php artisan
If you want to clear view cache, just use:
php artisan view:clear
If you don't know how to use specific artisan command, just add "help" (see below)
php artisan help view:clear