I am trying to make foreach loop in laravel to list all users but when I use the code that laravel suggested I get this error:
Undefined variable: users (View: /home/vagrant/Code/SimFly/resources/views/profile.blade.php)
The code causing the error is:
@foreach ($users as $user)
<p>This is user {{ $user->id }}</p>
@endforeach
Please can someone help me.