@extends('Admin.layout.master') @section('content')
image
{{$game->name}} @if ($game->status == 'active' || $game->status == 'pending') {{ ucfirst(trans($game->status)) }} @elseif ($game->status == 'canceled') {{ ucfirst(trans($game->status)) }} @else {{ ucfirst(trans($game->status)) }} @endif
0
Total Players
{{--
0
--}}
{{$game->location}}
Location
{{--
0
--}}
@if ($game->play_with_friends == true) Private @else Public @endif
Privacy

Game Invitations

Total {{$invite_count}} Invitations
@foreach ($invites as $invite) @endforeach
ID Name Invited By Game Name Location Invited On
{{ $loop->iteration }} {{ $invite->userId->name }} {{ $invite->inviteBy->name }} {{ $invite->gameId->name }} {{ $invite->gameId->location }} {{ $invite->created_at }}
@endsection @section('script') @endsection