How-to's Creating a new Laravel project
1. Install the required PHP extensions
  1. sudo apt install php8.3-sqlite3 php8.3-xml zip
2. Create a new Laravel project using Composer
  1. composer create-project laravel/laravel laravel
3. Start Laravel's local development server
  1. php artisan serve
INFO  Server running on [http://127.0.0.1:8000].

Press Ctrl+C to stop the server

2024-07-19 14:32:49 / ...................................................... ~ 0.56ms
2024-07-19 14:32:49 /favicon.ico ........................................... ~ 0.18ms
4. Navigate to http://127.0.0.1:8000 and you should see the default Laravel landing page