@extends(EcommerceHelper::viewPath('customers.master')) @section('content') @include('plugins/ecommerce::themes.customers.product-reviews.icons')

{{ SeoHelper::getTitle() }}

@if ($products->count())
@foreach ($products as $product)
{{ $product->name }}
{{ $product->order_product_name ?: $product->name }}
@if ($product->order_completed_at)
{{ __('Order completed at') }}:
@endif
@for ($i = 5; $i >= 1; $i--) @endfor
@endforeach
@else
{{ __('You do not have any products to review yet. Just shopping!') }}
@endif
@include('plugins/ecommerce::themes.customers.product-reviews.reviewed')
@include('plugins/ecommerce::themes.customers.product-reviews.modal')
@endsection