@extends('layouts.app') @section('title') Vouchers @endsection @section('content')

Your Vouchers

@include('partials.customer_sidebar')
@foreach ($vouchers as $voucher) @php $product = $voucher->productVariation->product; @endphp @if ($product)
@foreach ($product->images as $image) @if($image->main_image) {{ $product->name }} @endif @endforeach

Voucher

{{ $product->name }}

{{ $product->full_description }}

Available From:
{{ $product->start_date }}
End From:
{{ $product->end_date }}
{{ $product->unit_price }} Points
@if($voucher->used) @else @endif
@endif @endforeach
@endsection @section('js') @endsection