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

{{ __('View Exhibitors') }}

@can('exhibitor_create') @endcan
@if (Gate::check('exhibitor_create') || Gate::check('exhibitor_delete')) @endif @foreach ($exhibitor as $item) @if (Gate::check('exhibitor_edit') || Gate::check('exhibitor_delete')) @endif @endforeach
{{ __('Image') }} {{ __('Name') }} {{ __('Contact No') }} {{ __('Address') }} {{ __('Status') }}{{ __('Action') }}
{{ $item->name }} {{ $item->contact_no ?? 'N/A' }} {{ $item->address ?? 'N/A' }} {{ $item->status == 1 ? 'Active' : 'Inactive' }} @can('exhibitor_edit') @endcan @can('exhibitor_delete') @endcan
@endsection