Skip to content
Advertisement

Undefined variable: posts (View: C:UsersBWBDocumentsLaravelrestravelsresourcesviewsprofile.blade.php)

So I’m working on a blog website and I want to associate users with certain posts and posts with certain users. So I have a profile page that displays the current logged in user’s info but doesn’t pass the posts related to the user. I dont know if its my model relations that are wrong but i keep getting the posts not defined error. Here is my ProfileController

JavaScript

Here is my Post model’s user method

JavaScript

Here is my User model’s posts method

JavaScript

Here is how i output it in the view

JavaScript

Advertisement

Answer

You have an error in the view return. It should be:

JavaScript

Please see: https://laravel.com/docs/7.x/blade#displaying-data

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