@extends('layouts.super_admin.app') @section('styles') @endsection @section('content')
    @foreach($activeOrdersArray as $index => $order)
  • {{ $order->starts_at_date }} {{ $order->starts_at_time }}
    @if($order->orderUser) {{ substr($order->orderUser->name, 0, 1).substr($order->orderUser->last_name, 0, 1) }} @else {{ __('global.user_deleted') }} @endif

    @if($order->orderUser) {{ $order->orderUser->name }} {{ $order->orderUser->last_name }} @else {{ __('global.user_deleted') }} @endif

    {{ $order->title }}

    {{ __('global.arena') }}: {{ $order->product_title }}

    {{ __('global.players') }}: {{ $order->player_count }}

    {{ __('global.time') }}: {{ $order->start }} - {{ $order->end }}

    {{ __('global.accessories') }}:

    {{ __('global.price') }} : {{ $order->transaction }} ₾ @if($order->is_paid) - {{ __('global.paid') }} @else - {{ __('global.not_paid') }} @endif

    {{ $order->created_at_time }}

  • @endforeach
@if(count($activeOrdersArray) > 5)
@endif
@endsection @section('scripts') @endsection