@extends('admin.layout') @section('admin-title') Raffle Tickets for {{ $raffle->name }} @endsection @section('admin-content') {!! breadcrumbs(['Admin Panel' => 'admin', 'Raffle Index' => 'admin/raffles', 'Raffle Tickets for ' . $raffle->name => 'admin/raffles/view/' . $raffle->id]) !!}
This raffle is currently hidden. (Number of winners to be drawn: {{ $raffle->winner_count }})
@if ($raffle->ticket_cap)
This raffle has a cap of {{ $raffle->ticket_cap }} tickets per individual.
@endif
This raffle is currently open. (Number of winners to be drawn: {{ $raffle->winner_count }})
@if ($raffle->ticket_cap)
This raffle has a cap of {{ $raffle->ticket_cap }} tickets per individual.
@endif
This raffle is closed. Rolled: {!! format_date($raffle->rolled_at) !!}