ErrorException Undefined variable in Laravel 9

ErrorException Undefined variable in Laravel 9

Posted by Luke Beeno on July 23, 2022

ErrorException Undefined variable in Laravel 9

ErrorException Undefined variable in Laravel 9

Posted by Luke Beeno on July 23, 2022

Sometimes you might get an undefined variable error in your Laravel 9 project, especially when you try to use it in a view file from a controller. There might be a few possible solutions.

Before we continue to coding examples, the error might just be caused by a spelling mistake.

So, first point:

Make sure that the spelling of the variable is the same in your controller and view. 

Now, lets use the code snippet below as an example:

public function index()
{   
  $title = "Wecode101";
  return view ('pages.index');
}

To pass variable to view, don't do this:

public function index()
{   
  $title = "Wecode101";
  return view ('pages.index', $title);
}

Do this:

public function index()
{   
  $title = "Wecode101";
  return view ('pages.index', compact('title'));
}

Or this:

public function index()
{   
  $title = "Wecode101";
  return view ('pages.index', ['posts' => $posts]);
}

 

This field is required
Your question have been successfully submitted and will be reviewed before published
Please login to ask a question