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

{{ __('View Exhibitor Type') }}

@can('exhibitor_create') @endcan
@if (Gate::check('exhibitor_create') || Gate::check('exhibitor_delete')) @endif @foreach ($type as $item) @if (Gate::check('exhibitor_edit') || Gate::check('exhibitor_delete')) @endif @endforeach
{{ __('Name') }} {{ __('Order') }}{{ __('Action') }}
{{ $item->name }} {{ $item->order }} @can('exhibitor_edit') @endcan @can('exhibitor_delete') @endcan
@endsection