@extends('layouts.home') @section('title', 'RECO.BON') @section('content') @include('partials.transaction-status')
@if(count($selectionCouponGroups) > 0)
RECO.BON(s) zum Auswählen
@foreach($selectionCouponGroups as $group)
@include('partials/coupon', ['coupon' => $group, 'selectionDummy' => true])

Bitte wähle jetzt einen Gutschein aus. Die übrigen Gutscheine aus dieser Auswahl verfallen.

@foreach($group->fullSelectionGroup as $coupon)
@include('partials/coupon', compact('coupon'))
@endforeach
@endforeach
@endif @if(count($coupons) > 0)
RECO.BON(s) zum Einlösen
@foreach($coupons as $coupon)
@include('partials/coupon', compact('coupon'))
@endforeach
@endif @if(count($couponsFinished) > 0)
RECO.BON(s) eingelöst
@foreach($couponsFinished as $coupon)
@include('partials/coupon', compact('coupon'))
@endforeach
@endif
@endsection @section('after-scripts') @endsection