@extends('master') @section('content') @php $currency = \App\Models\Setting::first()->currency; @endphp
@include('admin.layout.breadcrumbs', [ 'title' => __('Slot Booking Requests'), ])
@if (session('status')) @endif

{{ __('View Slot Booking Requests') }}

@if (Gate::check('our_clients_create') || Gate::check('our_clients_delete')) @endif @foreach ($bookings as $item) @if (Gate::check('event_edit') || Gate::check('event_delete')) @endif @endforeach
{{ __('Logo') }} {{ __('Comapny Name') }} {{ __('Comapny Email') }} {{ __('Comapny Phone') }} {{ __('Status') }}{{ __('Action') }}
{{ $item->company_name }} {{ $item->company_email }} {{ $item->company_phone }} @if($item->status == 'approved') Approved @elseif($item->status == 'rejected') Rejected @else Pending @endif @can('event_edit') @endcan
@endsection