@extends('web.layouts.container') @section('content')
@if(count($halls)) @foreach($halls as $hall)
@if($hall->rate) {{$hall->rate}} @endif {{$hall->category_name}} @if(is_array($hall->discount_dates) && in_array(date('Y-m-d'), ($hall->discount_dates[0]['dates'] ?? []))) {{__('halls.discount') . ' ' . $hall->discount_dates[0]['discount_percentage'].'%'}} @endif
{{__('main.provider')}}
{{$hall->provider_name}}
{{$hall->hall_name}}

{{$hall->city_name}}

@if($hall->reservation_type == 'person_count')

{{__('main.start_from')}} {{$hall->booking_amount_per_person}} {{__('main.sar')}} {{(__('main.per_person'))}} @endif @if($hall->reservation_type == 'days_count')

{{__('main.start_from')}} {{$hall->booking_amount_per_day}} {{__('main.sar')}} {{(__('main.per_day'))}} @endif {{__('main.book_now')}}

@endforeach @else
{{__('members.no_data')}}
@endif
@if(count($halls) > 8) @endif
@endsection @section('inner_js') @endsection