I\'m trying to redirect the user to another page if my additional_infos table contain some stuff that are empty in this case, contact, name and address.
I\'ve done somet
Try transform your query to SQL to check what are you doing with database first
$additional_info = DB::table('additional_infos')->where('address',NULL)->orWhere('name', NULL)->orWhere('number')->toSql(); dd($additional_info);