Pages

Structure

The resources/js/Pages/ directory contains your Application Views.

resources/js/Pages ├── API ├── Dashboard.vue ├── Demos ├── ForgotPassword.vue ├── Login.vue ├── Profile └── Register.vue

Demos

The resources/js/Pages/Demos/ directory contains the demo Application Views. The pages here are mapped to dynamic layout routes from routes/web.php as :layout/:page which results in routes like http://luma-laravel.test/app/home which will set the layout to app and will load the page home

resources/js/Pages/Demos ├── billing-history.vue ├── billing-invoice.vue ├── billing-payment.vue ├── billing-upgrade.vue ├── billing.vue └── ... many more