select `bookings`.`id` as `booking_id`, `bookings`.`booking_date`, DATE_FORMAT(bookings.from_time, '%H:%i') AS fromtime, DATE_FORMAT(bookings.to_time, '%H:%i') AS totime, `bookings`.`booking_status`, `bookings`.`staff_id`, `products`.`id` as `product_id`, `products`.`source_name` as `product_name`, `user_details`.`profile_image`, `users`.`name` as `creator_name` from `bookings` inner join `products` on `bookings`.`product_id` = `products`.`id` inner join `users` on `bookings`.`user_id` = `users`.`id` left join `user_details` on `user_details`.`user_id` = `users`.`id` where `bookings`.`staff_id` = ? and `products`.`deleted_at` is null and `bookings`.`deleted_at` is null order by `bookings`.`created_at` desc limit 5 Array ( [0] => 12 ) Results: Illuminate\Support\Collection Object ( [items:protected] => Array ( [0] => stdClass Object ( [booking_id] => 27 [booking_date] => 2026-05-01 00:00:00 [fromtime] => 12:00 [totime] => 13:00 [booking_status] => 6 [staff_id] => 12 [product_id] => 12 [product_name] => Eletricidade [profile_image] => 019ea08e-6bf6-44a4-93de-074d4221c1a1_1774119171.jpeg [creator_name] => roly ) [1] => stdClass Object ( [booking_id] => 8 [booking_date] => 2026-03-26 00:00:00 [fromtime] => [totime] => [booking_status] => 6 [staff_id] => 12 [product_id] => 1 [product_name] => Manutenção de AC [profile_image] => 019ea08e-6bf6-44a4-93de-074d4221c1a1_1774119171.jpeg [creator_name] => roly ) [2] => stdClass Object ( [booking_id] => 7 [booking_date] => 2026-04-03 00:00:00 [fromtime] => [totime] => [booking_status] => 6 [staff_id] => 12 [product_id] => 1 [product_name] => Manutenção de AC [profile_image] => 019ea08e-6bf6-44a4-93de-074d4221c1a1_1774119171.jpeg [creator_name] => roly ) [3] => stdClass Object ( [booking_id] => 6 [booking_date] => 2026-03-27 00:00:00 [fromtime] => [totime] => [booking_status] => 6 [staff_id] => 12 [product_id] => 1 [product_name] => Manutenção de AC [profile_image] => 019ea08e-6bf6-44a4-93de-074d4221c1a1_1774119171.jpeg [creator_name] => roly ) [4] => stdClass Object ( [booking_id] => 5 [booking_date] => 2026-03-11 00:00:00 [fromtime] => [totime] => [booking_status] => 6 [staff_id] => 12 [product_id] => 1 [product_name] => Manutenção de AC [profile_image] => 019ea08e-6bf6-44a4-93de-074d4221c1a1_1774119171.jpeg [creator_name] => roly ) ) [escapeWhenCastingToString:protected] => )