@extends('backend.layouts.main')
@section('title')
{{ __('Dashboard') }} :: {{ __('Games') }}
@endsection
@section('content')
@include('backend.pages.dashboard.tabs')
{{ __('Games played by day') }}
{{ __('Net win by day') }}
{{ __('Games by result') }}
{{ __('Games by type') }}
{{ __('Extra games stats') }}
{{ __('Game') }} |
{{ __('Bet') }} |
{{ __('Win') }} |
{{ __('Net win') }} |
{{ __('Return to player') }} |
{{ __('House edge') }} |
@foreach($played_by_type_ext as $item)
{{ $item->game }} |
{{ $item->_bet }} |
{{ $item->_win }} |
{{ $item->_net_win }} |
{{ $item->_return_to_player }} |
{{ $item->_house_edge }} |
@endforeach
{{ __('Top wins') }}
@if($top_wins->isEmpty())
{{ __('There are no games yet.') }}
@else
@endif
{{ __('Top losses') }}
@if($top_losses->isEmpty())
{{ __('There are no games yet.') }}
@else
@endif
@endsection