From fdbece09ddbdd3d2bf4fc6563f775308d27f6e92 Mon Sep 17 00:00:00 2001 From: mike ritter Date: Tue, 21 Jan 2025 21:56:10 -0500 Subject: [PATCH] Launch Local Site With Please I changed the CLI command to use please instead of artisan to launch local server because artisan is not included. --- content/collections/docs/local.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/content/collections/docs/local.md b/content/collections/docs/local.md index 1c062cbb0..989142d09 100644 --- a/content/collections/docs/local.md +++ b/content/collections/docs/local.md @@ -59,11 +59,11 @@ The address where you access the site will be different depending on your develo For example, if you're using [Valet][valet] then your site would be at `http://$project_name.test` and the Control Panel at `/cp`. -If you don't have Valet or some other server set up, you can run `php artisan serve` to use the built-in server, then use the URL it provides, (which is typically `http://127.0.0.1:8000`). +If you don't have Valet or some other server set up, you can run `php please serve` to use the built-in server, then use the URL it provides, (which is typically `http://127.0.0.1:8000`). ```cli -$ php artisan serve -Starting Laravel development server: http://127.0.0.1:8000 +$ php please serve +Laravel development server started on http://127.0.0.1:8000/ ``` ## Troubleshooting