From 276d9d03e8e6d459b49b2f4f5287bf03e5671a4d Mon Sep 17 00:00:00 2001 From: Abdessamad Bettal | Freelancer <93977120+abdessamadbettal@users.noreply.github.com> Date: Thu, 2 Jan 2025 10:10:05 +0100 Subject: [PATCH] Update README.md --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index e60334c..556e107 100644 --- a/README.md +++ b/README.md @@ -107,6 +107,24 @@ This is a Laravel starter project that includes a comprehensive setup with Docke ```sh php artisan test 'or' sail test ``` +10. **Make enums**: + ```sh + php artisan make:spatie-enum StatusEnum + ``` +11. **Make sure to dump the autoload**: + ```sh + composer dump-autoload + ``` + +10. **Make services**: + ```sh + php artisan make:service UserService + ``` +11. **Make request**: + ```sh + php artisan make:request User/UpdateUserRequest + php artisan make:request User/StoreUserRequest + ``` ## Usage