@extends('backend.layouts.user') @section('page-title', trans('app.live_stats')) @section('page-heading', trans('app.live_stats')) @section('content')
@include('backend.partials.messages')
@lang('app.live_stats')
@lang('app.filter')
{!! Form::select('type', ['' => 'All', 'PayStat' => 'Pay Stats', 'StatGame' => 'Game Stats', 'BankStat' => 'Bank Stats', 'ShopStat' => 'Shop Stats'], $filter, ['id' => 'type', 'class' => 'form-control']) !!}
@if (count($statistics)) @foreach ($statistics as $stat) @include('backend.stat.partials.row_live_stat') @endforeach @else @endif
@stop @section('scripts') @stop