@extends('front.layout.master') @section('main_content') @php $setting = App\Models\Setting::where('id',1)->first(); @endphp

Bookings

@include('user.sidebar')
@foreach($all_data as $item) @endforeach
SL Invoice No Total Persons Paid Amount Payment Method Payment Status Action
{{ $loop->iteration }} {{ $item->invoice_no }} {{ $item->total_person }} ${{ $item->paid_amount }} {{ $item->payment_method }} @if($item->payment_status == 'Completed')
Completed
@else
Pending
@endif
Detail Invoice
@endsection