@extends('frontend.layouts.home') @section('content') @if(!empty($slider->slides)) @endif

{{ __('Free trial') }}

{{ __('Sign up and get :x free credits to play and try our casino.', ['x' => config('settings.bonuses.sign_up_credits')]) }}

@auth {{ __('My profile') }} @else {{ __('Sign up') }} @endauth

{{ __('Crypto deposits') }}

{{ __('Make deposits in cryptocurrencies.') }} @installed('payments') @if(config('settings.bonuses.deposit.amount_pct') > 0) {{ __('Get :pct% back when you deposit more than :amount credits at once.', [ 'amount' => config('settings.bonuses.deposit.amount_min'), 'pct' => config('settings.bonuses.deposit.amount_pct'), ]) }} @endif @endinstalled

@auth {{ __('My profile') }} @else {{ __('Sign up') }} @endauth

{{ __('Referral program') }}

{{ __('Refer other people to our casino and get bonuses when they sign up, play games or make deposits.') }}

@auth {{ __('My profile') }} @else {{ __('Sign up') }} @endauth

{{ __('Play our exciting games') }}

@if(!$game_categories->isEmpty())
{{ __('All') }} @foreach($game_categories as $category) {{ $category }} @endforeach
@endif
@foreach($game_packages as $i => $game)
{{ $game->name }}

{{ $game->name }}

{{ __('Play') }}
@endforeach
@installed('raffle')

{{ __('Take part in raffles') }}

{{ __('We run raffles for all our users on a regular basis.') }} {{ __('Purchase tickets and win hefty bonuses.') }}

{{ __('Purchase tickets') }}
@endinstalled

{{ __('Provably fair') }}

{{ __('Our casino uses provably fair technology, which allows you to verify that each roll or card draw is completely random and you are not being cheated!') }}

{{ __('Recent games') }}

@if(!$games->isEmpty())
    @foreach($games as $game)
  • {{ $game->title }}

    {{ $game->gameable->result }}

    {{ __('Played by') }} {{ $game->account->user->name }} {{ $game->created_at->diffForHumans() }}

    {{ __('Bet :x', ['x' => $game->_bet]) }} {{ __('Win :x', ['x' => $game->_win]) }}
  • @endforeach
@else
{{ __('No games were played yet.') }}
@endif
@if($top_game)

{{ __('Biggest win') }}

{{ $top_game->title }}

{{ $top_game->account->user->name }} {{ __('won :x credits', ['x' => $top_game->_win]) }}

{{ __('View leaderboard') }}
@endif
@endsection @push('scripts') @endpush