Skip to content
Advertisement

LARAVEL 7, Undefined variable, cant pass Variable from Controller to View

im new at Laravel, and im making a CRUD following this tutorial:

https://appdividend.com/2020/03/13/laravel-7-crud-example-laravel-7-tutorial-step-by-step/

first i made it on my own, and then i just copied the code from GitHub, in both cases im getting in the variable inside the @foreach:

FacadeIgnitionExceptionsViewException Undefined variable: coronacases

I searched a bit and tryed some other solutions with no luck, so i started a new project with just index function to see if data is passed from controler to view.

This is my code, Controller:

JavaScript

Alternative sintaxys tested in Controller:

JavaScript

Routes:

JavaScript

Alternative Routes Tested:

JavaScript

View:

JavaScript

Also tryed at View:

JavaScript

All this Test, and im getting same error, Im missing Something and i cant figure it out… or i have some trouble with Laravel,the sure things is that im stuck.

Complementary info:

php artisan route:list resoult:

Environment information

Laravel version: 7.16.1, Laravel locale: en, Laravel config cached: false, PHP version: 7.4.6.

Request

URL http://127.0.0.1:8000/ Method GET

Headers

host 127.0.0.1:8000 user-agent Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:75.0) Gecko/20100101 Firefox/75.0

I also tryed with php artisan view:cache && php artisan view:clear

Advertisement

Answer

You’ve defined a function called index on your TestController but you have not used it. In your route, you are not using the controller and that function , so you get this error.
Your method is like : route > view
It should be : route > controller > view

So Change your route :

JavaScript

to

JavaScript

Cheers 🙂

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement