Display data in table using foreach in Laravel
Display data in table using foreach in Laravel
Good day, guys. In this post, we’ll look at how to solve the "Display data in table using foreach in Laravel" programming puzzle.
There are many ways to display data in a table using the foreach method in Laravel. We have to use an appropriate way to display data into a table so that it does not throw any exception while data goes through the foreach loop. To avoid these exceptions we have to first check if their records exist in it or not and after that, we can display data in it.-
Display data using count method on object with foreach in table
--PATH resources\views\<yourfile>.blade.php@if($posts->count()) @foreach($posts as $post) <tr> <td> {{ $post->title }} </td> <td> {{ $post->body }} </td> </tr> @endforeach @else <tr> <td colspan="2"> No record found </td> </tr> @endif
The count() method first checks if the object has any records or not, after that, it displays data in the table using the foreach method if the object has records in it. If the object does not have any records then it executes the else statement and displays no records found.
-
Display data in table using forelse loop Laravel
--PATH resources\views\<yourfile>.blade.php@forelse($posts as $post) <tr> <td> {{ $post->title }} </td> <td> {{ $post->body }} </td> <td> {{ $post->created_at }} </td> </tr> @empty <tr> <td colspan="3"> No record found </td> </tr> @endforelse
This code snippet is the shorter way to display data in the table using forelse loop in Laravel which displays data if any records exist in object else it displays no record found.
Related Queries
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
Don't forget to share this article! Help us spread the word by clicking the share button below.
We appreciate your support and are committed to providing you valuable and informative content.
We are thankful for your never ending support.
Random Code Snippet Queries: Laravel
- Route group with URI prefix using middleware and route name prefixes
- Get Array of IDs from Eloquent Collection
- Laravel migration add foreign key to existing table
- How to get records in random order in laravel
- How to insert ckeditor data into database in Laravel?
- Run artisan command to generate key in laravel
- Laravel pagination links with query string
- Update email with unique validation in laravel
- Pass value from controller to model in laravel
- Link storage folder in laravel 8
- Declaration of App\Models\Post::sluggable() must be compatible with Cviebrock\EloquentSluggable\Sluggable
- Illuminate\Database\QueryException could not find driver
- How to upload multiple images after preview in laravel using cropper js
- How to validate website url in laravel using validaiton
- Trying to get property 'title' of non-object
- Call to undefined function Illuminate\Encryption\openssl_cipher_iv_length()
- Json encode method in laravel
- Get count of filter data, while return a small set of records
- Create records using relationship in laravel
- Create project table with model and migration
- Argument 1 passed to Symfony\Component\HttpFoundation\Response::setContent() must be of the type string or null, object given
- How to add a key value pair to existing array in laravel
- Remove several global scope from query
- How to add unique records in pivot columns of Laravel pivot table
- How to check email is valid or not in Laravel