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

{{ __('View Hall') }}

@can('event_create') @endcan
@if (Gate::check('event_create') || Gate::check('event_delete')) @endif @foreach ($halls as $item) @if (Gate::check('event_edit') || Gate::check('event_delete')) @endif @endforeach
{{ __('Name') }}{{ __('Action') }}
{{ $item->name }} @can('event_edit') @endcan @can('event_delete') @endcan
@endsection