@extends('web.layouts.main') @section('content') @include('web.components.page-header', ['heading' => $section->title, 'subheading' => $section->text])

{{ trans('text.6-most-frequent') }}


    @foreach($most_frequent_balls as $most_frequent_ball)
  • @include('web.components.loto-ball', ['number' => $most_frequent_ball, 'display_color' => Config::get('balls')[$most_frequent_ball]['color']])
  • @endforeach

{{ trans('text.most-frequent') }}


  • @include('web.components.loto-ball', ['number' => $most_frequent_balls[0], 'display_color' => Config::get('balls')[$most_frequent_balls[0]]['color']])

{{ trans('text.6-least-frequent') }}


    @foreach($least_frequent_balls as $least_frequent_ball)
  • @include('web.components.loto-ball', ['number' => $least_frequent_ball, 'display_color' => Config::get('balls')[$least_frequent_ball]['color']])
  • @endforeach

{{ trans('text.least-frequent') }}


  • @include('web.components.loto-ball', ['number' => $least_frequent_balls[5], 'display_color' => Config::get('balls')[$least_frequent_balls[5]]['color']])

{{ trans('text.graph') }}

{{--

{{ trans('text.graph-text') }}

--}}
@foreach($counts as $key => $count)
#{{ $key }}x{{ $count }}
@endforeach
@endsection