{!! __('Customers also liked') !!}

@foreach ($products as $k => $product)
@if ($product->offer) {!! $product->getPercentAttribute() !!}% @endif {{ $product->title }}
@if ($product->available === 1) {!! __('Availability') !!} @elseif ($product->available === 2) {!! __('Reservation') !!} @else {!! __('Not available') !!} @endif

@if ($product->offer)

{!! $product->offer !!} {!! $product->price2 !!}{!! __('EGP') !!}
{!! optional($product->unit)->title !!}
@else
{!! $product->price2 !!} {!! __('EGP') !!}
{!! optional($product->unit)->title !!}
@endif

{!! csrf_field() !!}
@endforeach