@extends('admin.master') @section('title',@trans('Halls')) @section('content')

@trans('Halls')

@include('admin.pages.hall._model_search')
@csrf
@forelse ($halls as $item) @empty @endforelse
# @trans('Title') @trans('Country') @trans('City') @trans('Created By') @trans('Status') @trans('Settings')
{{ $loop->index + 1 }} {{ @$item->trans->where('locale', $current_lang)->first()->title }} {{ $item->country->trans->where('locale', $current_lang)->first()->title }} {{ $item->city->trans->where('locale', $current_lang)->first()->title }} {{ @$item->create_by->name }} @if ($item->status == 1) @trans('Active') @else @trans('Unactive') @endif @include('admin.pages.hall._model_delete', ['id' => $item->id])
@trans('No halls found')
@endsection