Advertisement
Virajsinh

PhP Artisan Composer Command

Sep 26th, 2024 (edited)
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | Source Code | 0 0
  1. copy .env.example .env
  2.  
  3. composer install
  4. composer update --ignore-platform-reqs
  5.  
  6. php artisan optimize:clear
  7. php artisan cache:clear
  8. php artisan config:cache
  9. php artisan config:clear
  10. php artisan view:cache
  11. php artisan view:clear
  12. php artisan route:clear
  13. php artisan vendor:publish --list
  14.  
  15. php artisan route:list
  16. php artisan install:api
  17. php artisan key:generate
  18. php artisan migrate
  19.  
  20. php artisan make:request StoreUserRequest // Create For Form Request Validation
  21. php artisan make:mail MyMail // Create For Email Template
  22.  
  23. php artisan make:model State // Make Model
  24. php artisan make:controller Backend/StateController --resource --model=State // Create Controller With Resource Method Connect With State Model
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement