Combinez 2 colonnes Recherche de recherche Laravel
public function index()
{
$users = User::select("*", DB::raw("CONCAT(users.first_name,' ',users.last_name) as full_name"))
->get();
return view('home', compact('users'));
}
Awful Antelope