@extends('frontend.layouts.app') @section('title', __('Search Parcel')) @section('content')
Search Parcel
You can add parcel to subscription list for faster parcel status checking.
@if(paymentEnabled())

You have {{ getMaxTrack()-auth()->user()->todayTracks->count() }} attempt left for today.

{{--
    --}} {{--
  • --}} {{-- Upgrade--}} {{--
  • --}} {{--
  • --}} {{-- Learn More--}} {{--
  • --}} {{--
--}}
@endif
@if(request()->tracking_no) @if($parcel)
November, 2020
    @foreach($parcel->transactions as $transaction)
  • {{ reformatDatetime($transaction->created_at, 'd M') }}
    {{ $transaction->remark }}
    {{ reformatDatetime($transaction->created_at, 'h:i A') }}
  • @endforeach
@else
No parcel found for {{ request()->tracking_no }}
@endif @endif
@endsection