@if(session()->has('admin_userid')) @else @endif @extends('backend.header') @section('content')

Booking Confirmation List

@php $get_booking =DB::table('booking_now')->get(); $count = 1; @endphp

Parking Providers Details

{{--   Add --}}
@foreach ($get_booking as $booking) @php $count++ @endphp @endforeach
S.No Name Email Mobile Address Vehicle Vehicle Reg No Action
{{$count}} {{$booking->fname}}   {{$booking->lname}} {{$booking->email}} {{$booking->mobile}} {{$booking->address}} {{$booking->vehicle}} {{$booking->vehicle_reg}}
@endsection