Upgrading old Laravel project
How to Upgrade Older Projects to Laravel 10
How to Upgrade Older Projects to Laravel 10
Learn how to write readable PHP that is a joy to maintain
https://freek.dev/2235-learn-how-to-write-readable-php-that-is-a-joy-to-maintain
Deploying laravel on shared hosts
https://laravelsharedhosting.novate.co.uk/
As a solo developer or a small team without DevOps resources, shared hosting can play a useful part in your server resource pool. Often you can deploy many sites under a single monthly fee (rather than per droplet) meaning you can try out ideas without spinning up additional costs.
#######################################################
How to create custom middleware in Laravel
https://inspector.dev/how-to-create-custom-middleware-in-laravel/?fbclid=IwAR3VqYI40iKkWupYj42H-BnIQ5HwC3zIY7GeC2_wi8IjfypGJz5r0GN3gag
############################
19 Laravel Ecosystem Explained – Part 1
create Objects in Laravel
Using Service Container to create Objects in Laravel
https://dev.to/100r0bh/using-service-container-to-create-objects-in-laravel-24gf
How to make login & registration in laravel 9
https://dev.to/shanisingh03/how-to-make-login-registration-in-laravel-9-1p2n
Laravel 9 Multi Auth: Create Multiple Authentication in Laravel
Laravel 9 UI Package:
composer require laravel/ui
Generate Auth:
php artisan ui bootstrap --auth
npm install
Laravel localization: A step-by-step guid: https://lokalise.com/blog/laravel-localization-step-by-step/
Localization: https://laravel.com/docs/8.x/localization#using-translation-strings-as-keys
Logging: https://laravel.com/docs/8.x/logging#writing-log-messages
solution:
Delete storage/framework/sessions folder content
Laravel caches and all ways to clear them
https://beyondco.de/blog/laravel-caches-and-all-ways-to-clear-them
error:
The GET method is not supported for this route. Supported methods: HEAD.
solution:
php artisan route:clear
Target class controller does not exist – Laravel 8
https://stackoverflow.com/questions/63807930/target-class-controller-does-not-exist-laravel-8