@extends('frontend.layouts.main') @section('title') {{ __('Raffles history') }} @endsection @section('content') @if($raffles->isEmpty())
| {{ __('ID') }} | {{ __('Winner') }} | {{ __('Win amount') }} | {{ __('Tickets purchased') }} | {{ __('Completed') }} |
|---|---|---|---|---|
| {{ $raffle->id }} | {{ $raffle->winner->name }} | {{ $raffle->_win_amount }} | {{ $raffle->tickets->count() }} / {{ $raffle->total_tickets }} | {{ $raffle->end_date->diffForHumans() }} |