@extends('layouts.front-end.app') @section('title', translate('Free gifts')) @section('content')
{{ translate('Choose your free gift') }}
{{ $remaining }} {{ translate('gift(s) remaining') }}
@if($remaining <= 0)
{{ translate('No free gifts available right now') }}
{{ translate('Back to cart') }}
@else @if($products->isEmpty())
{{ translate('No gift items found') }}
@else
@foreach($products as $product)
@include('web-views.partials._category-single-product', [ 'product' => $product, 'decimal_point_settings' => $decimal_point_settings ])
@endforeach
@endif @endif
@endsection