Support the ongoing development of Laravel.io →
Database Views Blade
Last updated 1 year ago.
0

Is this on a model, or a collection? If so you can just reference it via you variable. Say you are passing a list of users

$users = \App\User::all();

return view('user.index', compact('users'));

In blade you could just do

The number of users found: {{ $users->count() }}
0

Sign in to participate in this thread!

Eventy

Your banner here too?

andixhafa andixhafa Joined 2 Sep 2016

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.