@extends('backend.layouts.main') @section('title', 'Tour Booking List') @section('main-container')
Booking List
@foreach ($tickets as $key=> $value) @endforeach
# Ref-Id User Package Booking Status Total Payment Booking Date Action
{{$key+1}} {{$value->ref_code}} {{$value['user']['name']}} {{ Str::words($value->package->package_name, 3, '...') }} {{ $value->booking_status }} {{ number_format($value['total_amount']) .' - '.$value['currency']}} {{ $value->created_at->format('M-d-Y h:i a') }}
Payments Information
@foreach ($tickets as $key=> $value) @endforeach
# Ref-Id Method Status Trx Id Paid Booking Date
{{$key+1}} {{$value->ref_code}} {{$value->payment_method}} {{ number_format($value['total_amount']) .' - '.$value['currency']}}
{{ $value->payment_status=='pending' ? 'Verification Needed' : 'Verified' }}
{{ $value->trx_id }} {{ $value->paid_amount}} {{ $value->created_at->format('M-d-Y h:i a') }}
@endsection