@extends('admin.layouts.app') @section('head') @endsection @section('breadcrumb') @include('admin.includes.breadcrumb', [ 'title' => __('admin.games.index'), 'menu' => [ __('admin.games.index') => route('admin.games.index'), __('admin.games.show') => route('admin.games.show', $item->id), ], ]) @endsection @section('content')

{{ __('admin.games.show') }}

{{ __('admin.games.code') }} {{ $item->code }}
{{ __('admin.games.date_time') }} {{ $item->start_date->format('d/m/Y H:i A') }}
{{ __('admin.games.number_of_players') }} {{ $item->number_of_players }}
{{ __('admin.games.answer_seconds') }} {{ $item->answer_seconds }}
{{ __('admin.games.total_points') }} {{ $item->total_points }}
{{ __('admin.games.status') }} {{ __('admin.games.' . $item->status) }}
{{ __('admin.games.guest_name') }} {{ $item->guest ? $item->guest->name : 'لم يتم اختيار ضيف' }}
{{ __('admin.games.invitation_sent_to') }} @foreach($item->invited_players as $player) {{ $player->name }} @endforeach
{{ __('admin.games.end_date') }} {{ $item->end_date ? $item->start_date->format('d/m/Y H:i A') : '-' }}
@endsection