@extends('redesign.layouts.listeo.front')
@section('title', 'Meine Stempelkarten')
@section('document')
@if ( $stampcards['consumer']->count() )
@if ( isset($stampcards['consumer']['active']) )
Aktiv
@include('redesign.front.listeo.pieces.stampcards', ['stampcards' => $stampcards['consumer']['active']])
@endif
@if ( isset($stampcards['consumer']['started']) )
Gestartet
@include('redesign.front.listeo.pieces.stampcards', ['stampcards' => $stampcards['consumer']['started']])
@endif
@if ( isset($stampcards['consumer']['ready']) )
Bereit
@include('redesign.front.listeo.pieces.stampcards', ['stampcards' => $stampcards['consumer']['ready']])
@endif
@if ( isset($stampcards['consumer']['done']) )
Erledigt
@include('redesign.front.listeo.pieces.stampcards', ['stampcards' => $stampcards['consumer']['done']])
@endif
@else
Du hast noch keine Stempelkarten.
@endif
@endsection