You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -33,12 +33,12 @@ The goal of the project is to create a template for development on Laravel and N
33
33
34
34
## Features
35
35
36
-
-[**Laravel 11**](https://laravel.com/docs/11.x) and [**Nuxt 3**](https://nuxt.com/)
37
-
-[**Laravel Octane**](https://laravel.com/docs/11.x/octane) supercharges your application's performance by serving your application using high-powered application servers.
38
-
-[**Laravel Telescope**](https://laravel.com/docs/11.x/telescope) provides insight into the requests coming into your application, exceptions, log entries, database queries, queued jobs, mail, notifications, cache operations, scheduled tasks, variable dumps, and more.
39
-
-[**Laravel Sanctum**](https://laravel.com/docs/11.x/sanctum) Token-based authorization is compatible with **SSR** and **CSR**
-[**Laravel Sail**](https://laravel.com/docs/11.x/sail) Light-weight command-line interface for interacting with Laravel's default Docker development environment.
36
+
-[**Laravel 12**](https://laravel.com/docs/12.x) and [**Nuxt 3**](https://nuxt.com/)
37
+
-[**Laravel Octane**](https://laravel.com/docs/12.x/octane) supercharges your application's performance by serving your application using high-powered application servers.
38
+
-[**Laravel Telescope**](https://laravel.com/docs/12.x/telescope) provides insight into the requests coming into your application, exceptions, log entries, database queries, queued jobs, mail, notifications, cache operations, scheduled tasks, variable dumps, and more.
39
+
-[**Laravel Sanctum**](https://laravel.com/docs/12.x/sanctum) Token-based authorization is compatible with **SSR** and **CSR**
-[**Laravel Sail**](https://laravel.com/docs/12.x/sail) Light-weight command-line interface for interacting with Laravel's default Docker development environment.
42
42
-[**Spatie Laravel Permissions**](https://spatie.be/docs/laravel-permission/v6/introduction) This package allows you to manage user permissions and roles in a database.
43
43
- UI library [**Nuxt UI 3**](https://ui.nuxt.com/) based on [**TailwindCSS 4**](https://tailwindcss.com/) and [**Reka UI**](https://reka-ui.com/).
44
44
-[**Pinia**](https://pinia.vuejs.org/ssr/nuxt.html) The intuitive store for Vue.js
@@ -49,9 +49,9 @@ The goal of the project is to create a template for development on Laravel and N
49
49
50
50
## Requirements
51
51
52
-
- PHP 8.2+ / Node 20+
53
-
-**Redis** is required for the [**Throttling with Redis**](https://laravel.com/docs/11.x/routing#throttling-with-redis) feature
@@ -63,7 +63,7 @@ The goal of the project is to create a template for development on Laravel and N
63
63
6.`bun dev`
64
64
65
65
### Docker Deploy (Laravel Sail)
66
-
[Laravel Sail](https://laravel.com/docs/11.x/sail) is a light-weight command-line interface for interacting with Laravel's default Docker development environment. Sail provides a great starting point for building a Laravel application using PHP, MySQL, and Redis without requiring prior Docker experience.
66
+
[Laravel Sail](https://laravel.com/docs/12.x/sail) is a light-weight command-line interface for interacting with Laravel's default Docker development environment. Sail provides a great starting point for building a Laravel application using PHP, MySQL, and Redis without requiring prior Docker experience.
67
67
68
68
At its heart, Sail is the `docker-compose.yml` file and the `sail` script that is stored at the root of your project. The sail script provides a CLI with convenient methods for interacting with the Docker containers defined by the docker-compose.yml file.
69
69
@@ -74,7 +74,7 @@ docker run --rm \
74
74
-u "$(id -u):$(id -g)" \
75
75
-v "$(pwd):/var/www/html" \
76
76
-w /var/www/html \
77
-
laravelsail/php83-composer:latest \
77
+
laravelsail/php84-composer:latest \
78
78
composer install --ignore-platform-reqs
79
79
```
80
80
2. Configuring A Shell Alias (Optional)
@@ -87,7 +87,7 @@ To make sure this is always available, you may add this to your shell configurat
87
87
4.`sail bun install`
88
88
5.`sail bun dev`
89
89
90
-
> Read the full [Laravel Sail](https://laravel.com/docs/11.x/sail) documentation to get the best user experience
90
+
> Read the full [Laravel Sail](https://laravel.com/docs/12.x/sail) documentation to get the best user experience
0 commit comments