@section('title', 'Manage') @extends('layouts.admin') @section('extra-css') @endsection() @section('content')

{{ $dailyAvailable }}

Available Vouchers

{{ $dailyRedeemed }}

Redeemed Vouchers

{{ $totalEntries }}

Total Entries

{{--

{{ $allocated }}

Allocated

--}}

@include('layouts.partials.errors') @include('layouts.partials.success')

@if($entries->isEmpty()) NO DATA LOADED @else @foreach($entries as $x)

Full Name: {{ $x->winner_name }} {{ $x->winner_surname }}

Email Address: {{ $x->winner_email }}

Cell: {{ $x->winner_cell }}

Name of Outlet Purchased from: {{ $x->winner_vet }}

Cashier: {{ $x->winner_cashier }}

Product Purchased: {{ $x->winner_receipt }}

Receive Communication: {{ $x->winner_communicate }}

Receive Newsletter: {{ $x->winner_newsletter }}


Prize Won
{{ $x->prize }}


Voucher Code
{{ $x->description }}

@if($x->confirmed == "No")
@csrf
@else @endif
@if($x->valid == null)
@csrf
@elseif ($x->valid == "Yes") @else @endif
 
@endforeach @endif {{ $entries->links() }}
 
 
@endsection @section('extra-js') @endsection()