Skip to content
Advertisement

Laravel 8 Does Not Show Data From DB

I’m working with Laravel 8 and I have made a resource Controller to return some results from MySQL table so index() method of this Controller holds:

JavaScript

At at index.blade.php I added this:

JavaScript

So as you can see, it look fine but the problem is it does not show me any output! I mean no results and no errors at all.

Here is also my table info:

capture

However, on PHPStorm editor, the line return view('posts.index')->with('posts', $posts); has a notice sign which is saying:

Extend retrun type from IlluminateContractsFoundationApplication|IlluminateContractsViewFactory|IlluminateContractsViewView|IlluminateHttpResponse|IlluminateViewView

But I don’t what does it mean?

So if you know how to solve this problem, please let me know, I would really appreciate any idea from you guys.

Advertisement

Answer

I feel like the issue here is a simple logic issue. On the line where you check for the count of the $posts variable using @if(count($posts)>1), the if condition would fail if you have only one post in your database. This is because 1 is not greater than 1. You wouldn’t see anything in your view even though there is one post in your database. To fix the issue, modify your code to this:

JavaScript

OR

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