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

{{ __('View Assigned Exhibitors for ').$event->name }}

@can('event_create') {{ __('Add New') }} @endcan
@if (Gate::check('event_create') || Gate::check('event_delete')) @endif @foreach ($assignedExhibitors as $item) @if (Gate::check('event_edit') || Gate::check('event_delete')) @endif @endforeach
{{ __('Exhibitor Name') }} {{ __('Exhibitor Type') }} {{ __('Category') }} {{ __('Hall') }} {{ __('Booth') }} {{ __('Status') }}{{ __('Action') }}
{{ $item?->exhibitor?->name }} {{ $item?->exhibitorType?->name }} {{ $item?->category }} {{ $item?->hall?->name }} {{ $item?->booth_number }} {{ $item->status == 1 ? 'Active' : 'Inactive' }} @can('event_edit') @endcan @can('event_delete') @endcan
@endsection