{{ user.name }}
107 | 108 | 109 |{{ posts }}125 |
{{ validationErrors }}154 |
Only logged in users can access this page.
169 | 170 | ``` 171 | 172 | - `auth` 173 | 174 | Only logged in users can access the page, otherwise redirect to `/login` page. 175 | 176 | - `guest` 177 | 178 | Only non-logged in users can access the page, otherwise redirect to the `/dashboard` page. 179 | 180 | - `verified` 181 | 182 | Only logged in users with verified emails can access the page, otherwise redirect to `/login` page (if not logged in) or `/verify-email` page (if logged in). 183 | 184 | - `unverified` 185 | 186 | Only logged in users with unverified emails can access the page, otherwise redirect to `/login` page (if not logged in) or `/dashboard` page (if logged in). This is used only for the `/verify-email` page. 187 | 188 | ## License 189 | 190 | Laravel Breeze Nuxt3 is open-sourced software licensed under the [MIT license](LICENSE.md). 191 | -------------------------------------------------------------------------------- /app.vue: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 |