I\'m getting the following error
(1/1) ErrorException compact(): Undefined variable: operator
This is my line of code
$pos
Instead of passing the variable to the compact() method, you'll passe it the name of the variable as a string without the dollar symbol.
compact()
$postsCats = Post::all(); // example return view('posts.index', compact('postsCats'));