@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')
@csrf
@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 }}

Quantity: {{ $x->winner_quantity }}

Store: {{ $x->winner_store }}

City: {{ $x->winner_city }}

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

Downloaded App: {{ $x->winner_app_downloaded }}


Prize Won
{{ $x->prize }}


Voucher Code
{{ $x->description }}

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