xxxxxxxxxx
use Carbon\CarbonPeriod;
$from = "1:00";
$to = "24:00";
$minutesDifferentForTimeSlot = 60;
$periods = CarbonPeriod::create($from, $minutesDifferentForTimeSlot.' minutes', $to);
$available_times = array_map(function ($period) {
return $period->format('h:i a');
}, $periods->toArray());
return $available_times;