@php $activities = array( array("name" => "John Smith", "time" => "10:30 AM", "service" => "next week", "status" => 1), array("name" => "Sarah Johnson", "time" => "1:15 PM", "service" => "same-day", "status" => 1), array("name" => "Robert Lee", "time" => "3:45 PM", "service" => "next month", "status" => 1), array("name" => "Emily Davis", "time" => "11:00 AM", "service" => "friend", "status" => 0), array("name" => "Michael Brown", "time" => "2:30 PM", "service" => "business", "status" => 1), array("name" => "Jessica Garcia", "time" => "9:00 AM", "service" => "family", "status" => 1), array("name" => "David Robinson", "time" => "12:00 PM", "service" => "home", "status" => 1), array("name" => "Ashley Hernandez", "time" => "4:15 PM", "service" => "event", "status" => 1), array("name" => "Daniel Martinez", "time" => "2:00 PM", "service" => "car", "status" => 0), array("name" => "Elizabeth Taylor", "time" => "11:45 AM", "service" => "pet", "status" => 1), array("name" => "Liam Brown", "time" => "9:30 AM", "service" => "next day", "status" => 0), array("name" => "Olivia Davis", "time" => "2:45 PM", "service" => "urgent", "status" => 1), array("name" => "Lucas Johnson", "time" => "5:00 PM", "service" => "same-day", "status" => 1) ); @endphp

Lead Activity 388 Today

@foreach($activities as $activity)
{{date('H:i', strtotime($activity['time']))}}
@if($activity['status'] == 1)
{{$activity['name']}} has successfully booked
@else
{{$activity['name']}} called but noted booked any service
@endif
@endforeach