@extends('frontend.layouts.main') @section('title') {{ __('Raffle') }} @endsection @section('content') @if(!$raffle)
{{ __('This raffle has no winner.') }}
@endif{{ __('You can not purchase tickets at this time.') }}
@else{{ __('Purchase raffle tickets.') }} {{ __('A random ticket will be drawn at the end of the raffle.') }} {{ __('The ticket owner will win the pot, which equals :pct% of all purchased tickets value.', ['pct' => $raffle->pot_size_pct]) }} {{ __('The more tickets you purchase, the more chances you have to win.') }}
@endif| {{ __('User') }} | {{ __('Tickets') }} | {{ __('Last purchased') }} |
|---|---|---|
| {{ $participant->user->name }} @if($raffle->is_completed && $raffle->winner->id == $participant->user->id) {{ __('winner') }} @endif | {{ $participant->tickets_count }} | {{ $participant->last_purchased->diffForHumans() }} |