@extends('admin.layouts.container') @section('content')
{{-- Year chart--}}
{{__('dashboard.visit_in_prev_year')}} ({{date('Y', strtotime($prevYearStart))}})

{{__('dashboard.year')}}: {{date('Y', strtotime($prevYearStart))}}

{{$prevYearVisitors}}
{{__('dashboard.visit_in_year')}} ({{date('Y')}})

{{__('dashboard.year')}}: {{date('Y')}}

{{$thisYearVisitors}}
{{__('dashboard.visit_in_month')}} ({{date('F')}})

{{__('dashboard.month')}}: {{date('F')}}

{{$thisMonthVisitors}}
{{__('dashboard.visit_in_week')}} ({{date('W')}})

{{__('dashboard.week')}}: {{date('W')}}

{{$thisWeekVisitors}}
{{__('dashboard.visit_in_day')}} ({{date('l')}})

{{__('dashboard.day')}}: {{date('l')}}

{{$thisDayVisitors}}
@if(count($reservations)) @foreach($reservations as $status => $reservation)
{{__('reservations.'.$status.'_re')}}
{{count($reservation)}}
@endforeach @endif
{{__('reservations.confirmed_re_count')}}
{{$confirmedReSum}}
{{__('reservations.owed_amount')}}
{{$confirmedReSum}}
{{__('reservations.platform_profit_percentage')}}
{{$platformPercentage}}
{{__('reservations.users_counts')}}
{{count($users['user'])}}
{{__('reservations.providers_counts')}}
{{count($users['provider'])}}
{{__('reservations.halls_counts')}}
{{$hallsCounts}}
{{__('reservations.attendees_number')}}
{{$attendeesNumber}}
@endsection @section('inner_js') @endsection