@extends('layouts.admin-layout') @section('title', 'All Bookings') @section('content')

Booking Section

{{-- --}} {{-- @dd($bookings->users->all());--}} @foreach($bookings as $booking) {{-- --}} @endforeach
S.N. Name Event Name Price Number EmailAction
{{ $loop->iteration ?? '-' }} {{ $booking->name ?? '-' }} {{ $booking->event ?? '-' }} {{ $booking->price ?? '-' }} {{ $booking->number ?? '-' }} {{ $booking->email ?? '-' }}--}} {{-- @if(optional($booking->users)->user_role != 'vendor')--}} {{-- --}} {{-- Make Vendor--}} {{-- --}} {{-- @else--}} {{-- --}} {{-- Already a Vendor--}} {{-- --}} {{-- @endif--}} {{--
@endsection @section('script') @endsection