@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->start_date_time}}
Start Date Time
{{--
0
--}}
{{$game->end_date_time}}
End Date Time

Owner Details

Profile:
Email: {{$game->gameOwner->email}}
Name: {{$game->gameOwner->name}}
Status: {{$game->gameOwner->status}}
Phone: {{$game->gameOwner->phone_number}}
Profile Type: @if (isset($game->gameOwner->sub_expiry_date)) Premium @else Basic @endif
Subscription Expiry: {{ isset($game->gameOwner->sub_expiry_date) ? $game->gameOwner->sub_expiry_date : '-' }}
Credit Points: {{$credits_points}}
Total Games: {{$owner_games}}
{{--
Subscribed Products:
Product Subscription ID Qty Total Actions
Basic yearly bundle
sub_4567_8765 1 $149.99 / Year
Basic yearly bundle
sub_4567_3433 5 $949.99 / Year
--}}

Game Description:

@if(strlen($game->game_description) > 100) {{substr($game->game_description,0,200)}} ...Read More {{substr($game->game_description,100,strlen($game->game_description))}} ...Read Less @else {{$game->game_description}} @endif

Game Instructions:

@if(strlen($game->game_instructions) > 100) {{substr($game->game_instructions,0,200)}} ...Read More {{substr($game->game_instructions,100,strlen($game->game_instructions))}} ...Read Less @else {{$game->game_description}} @endif

Game Rules:

@if(strlen($game->game_rules) > 100) {{substr($game->game_rules,0,200)}} ...Read More {{substr($game->game_rules,100,strlen($game->game_rules))}} ...Read Less @else {{$game->game_description}} @endif

Game Reviews

Total {{$rate_count}} Ratings
@foreach ($ratings as $rating) @endforeach
ID Review Rating Rated By Rated To Privacy Total Players
{{ $loop->iteration }} {{ $rating->review }} {{ $rating->rating }} @if (isset($rating->game->play_with_friends) == true) Public @else Private @endif {{ $rating->game->number_of_player }}
@endsection @section('script') @endsection