| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- @extends('admin.layout.master')
- @section('main_content')
- @include('admin.layout.nav')
- @include('admin.layout.sidebar')
- <div class="main-content">
- <section class="section">
- <div class="section-header justify-content-between">
- <h1>Booking Information</h1>
- <div class="ml-auto">
- <a href="{{ route('admin_tour_index') }}" class="btn btn-primary"><i class="fas fa-plus"></i> Back to Previous</a>
- </div>
- </div>
- <div class="section-body">
- <div class="row">
- <div class="col-12">
- <div class="card">
- <div class="card-body">
- <div class="table-responsive">
- <table class="table table-bordered" id="example1">
- <thead>
- <tr>
- <th>SL</th>
- <th>Invoice No</th>
- <th>User Info</th>
- <th>Total Persons</th>
- <th>Paid Amount</th>
- <th>Payment Method</th>
- <th>Payment Status</th>
- <th>Show Invoice</th>
- <th>Action</th>
- </tr>
- </thead>
- <tbody>
- @foreach($all_data as $item)
- <tr>
- <td>{{ $loop->iteration }}</td>
- <td>
- {{ $item->invoice_no }}
- </td>
- <td>
- <strong>Name:</strong> {{ $item->user->name }}<br>
- <strong>Email:</strong> {{ $item->user->email }}<br>
- <strong>Phone:</strong> {{ $item->user->phone }}
- </td>
- <td>{{ $item->total_person }}</td>
- <td>{{ $item->paid_amount }}</td>
- <td>{{ $item->payment_method }}</td>
- <td>
- @if($item->payment_status == 'Completed')
- <span class="badge bg-success">Completed</span>
- @else
- <span class="badge bg-danger">Pending</span>
- <a href="{{ route('admin_tour_booking_approve',$item->id) }}">Approve It</a>
- @endif
- </td>
- <td>
- <a href="{{ route('admin_tour_invoice',$item->invoice_no) }}" class="badge bg-primary text-decoration-none" target="_blank">Show Invoice</a>
- </td>
- <td class="pt_10 pb_10">
- <a href="{{ route('admin_tour_booking_delete',$item->id) }}" class="btn btn-danger" onClick="return confirm('Are you sure?');"><i class="fas fa-trash"></i></a>
- </td>
- </tr>
- @endforeach
- </tbody>
- </table>
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- </section>
- </div>
- @endsection
|