Simple fix

Job ID: 34251712

Budget: $10 – $30 USD

I have a script that is giving me the following error. There is a "user" tab in the "back end" dashboard that is supposed to list users. However, when i select it, i get a 500 server error. The script has a debug so when i selected it, i got the error i have included. Its probably a line or two of code that needs to be changed. The script did not cost very much and their support is non existent. Would appreciate some help or advice. Thanks
Bob
Trying to access array offset on value of type null (View: /home4/beccdlmy/public_html/thedigitalprofessor/digitalprofessoracademy/resources/views/admin/user/index.blade.php)b
/home4/beccdlmy/public_html/thedigitalprofessor/digitalprofessoracademy/vendor/laravel/framework/src/Illuminate/View/Engines/PhpEngine.php
*
* @param string $__path
* @param array $__data
* @return string
*/
protected function evaluatePath($__path, $__data)
{
$obLevel = ob_get_level();

ob_start();

extract($__data, EXTR_SKIP);

// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
include $__path;
} catch (Exception $e) {
$this->handleViewException($e, $obLevel);
} catch (Throwable $e) {
$this->handleViewException(new FatalThrowableError($e), $obLevel);
}

return ltrim(ob_get_clean());
}

/**
* Handle a view exception.
*
* @param \Exception $e
* @param int $obLevel
* @return void
*
* @throws \Exception
*/
protected function handleViewException(Exception $e, $obLevel)
{
while (ob_get_level() > $obLevel) {
ob_end_clean();
Arguments
ErrorException {#1845 ▶}
1
Related categories: JavaScript Software Architecture MySQL HTML Laravel