Why I get this error?
ErrorException (E_ERROR) Undefined variable: users (View: /Users/acny/Desktop/Actor/resources/views/home.blade.php)
function of controller :
public function getData()
{
$users = DB::table('users')->get();
return view('home', compact('users'));
}
and .blade :
@foreach ($users as $user)
{{ $user }}
@endforeach
Thank for your help!