Używanie except()
zrobi to samo nieco płynniej:
$users = User::all()->except(Auth::id());
...lub skoro masz już identyfikator użytkownika:
$users = User::all()->except($currentUser->id);
Używanie except()
zrobi to samo nieco płynniej:
$users = User::all()->except(Auth::id());
...lub skoro masz już identyfikator użytkownika:
$users = User::all()->except($currentUser->id);