@extends('layouts.admin') @section('content')
@include('include.flash-message')
{{ date('Y-m-d') }}   
@php $bg = ['bg-blue-100', 'bg-orange-100', 'bg-cyan-100', 'bg-indigo-100', 'bg-pink-100', 'bg-red-100']; $i = 0; @endphp @foreach ($addresses as $item)
{{ $loop->iteration }}.
{{ $item->firstName }} {{ $item->lastName }}
{{ $item->address }}
{{ $item->distance / 1000 . 'Km' }},  {{ ceil($item->duration / 60) }} minutes
@foreach ($item->deliveryPackage as $p) @endforeach
{{ $p->title }} {{ $p->delivered == true ? 'Delivered' : 'Pending' }}
@endforeach
@endsection