Laravel trying to access array offset on value of type null

Error type: trying to access array offset on value of type null

Panjeh
Feb 3, 2021

Solution 1:

If you encounter such error in Laravel you need to only run this command.

php composer.phar update

or

composer update

That will fix the issue!

Solution 2:

This issue may due to that fact you are running old Laravel versions in a system using recent PHP versions. In such case, you can also do the following.

Change the PHP version in Composer.json to 7.4.* and and then run:

php composer.phar update

or

composer update

I would like to introduce two packages for Laravel that I have recently developed: Laravel Pay Pocket, a modern multi-wallet package, and Laravel Failed Jobs, a UI for the Laravel Failed Jobs Table. I hope they may be of help to you.

https://github.com/HPWebdeveloper/laravel-pay-pocket
https://github.com/HPWebdeveloper/laravel-failed-jobs

--

--