@extends('layouts.app') @section('title', 'Bangladesh Unbound - Ongoing Tours') @section('page-title', 'Ongoing Tours') @section('breadcrumb') @endsection @section('content')
{{ $booking->duration }}
{{ $booking?->customer?->phone }}
{{ $booking?->customer?->country }}
{{ $booking?->customer?->email }}
Customer ID: #HG{{ $booking?->customer?->id }}
| Transaction ID | Amount | Gateway | Active Status | Date | Action |
|---|---|---|---|---|---|
| {{ $history->transaction_number }} | ৳ {{ number_format($history->amount, 2) }} | {{ $history?->payment_gateway }} | @php $badgeClass = match ($history->payment_status) { 'success' => 'bg-success', 'pending' => 'bg-warning', 'failed' => 'bg-danger', 'refunded' => 'bg-secondary', default => 'bg-light', }; @endphp {{ $history->payment_status }} | {{ $history->created_at->format('d M Y') }} | @if ($history->payment_status == 'pending')@endif |