@extends('layouts.app') @section('content') @if (session()->has('message'))
{{ session()->get('message') }}
@endif @if (session()->has('error'))
{{ session()->get('error') }}
@endif
Pickup Dates
@forelse($pickupDateArr as $key => $value) @empty @endforelse
Location Date & Time Total Applications Download Print Labels
{{ $value->pickup_location ?? '' }} Date: {{ \Carbon\Carbon::parse($value->pickup_date)->format('F j, Y') }} [Time: {{ \Carbon\Carbon::parse($value->pickup_time_begin)->format('g:i A') }} - {{ \Carbon\Carbon::parse($value->pickup_time_end)->format('g:i A') }}] {{ $value->applications_count }}
No record found...
@endsection