@extends('layouts.shop') @section('title', $product->name) @section('content')
@if($product->bonus_percentage)
BONUS +{{ $product->bonus_percentage }}%!
@endif
TYPE OF PURCHASE:

{{ $product->name }}

The total cost of the purchase is {{ number_format($product->getCurrenciedPrice(), 2, ',', ' ') }} {{ \App\Helpers\CurrencyHelper::getCurrentCurrency() }} (including taxes).
Bank Transfer | Paysafecard | PayPal
@foreach($products as $otherProduct) @if($otherProduct->id !== $product->id) @if($otherProduct->bonus_percentage)

{{ $otherProduct->name }}

BUY FOR: {{ number_format($otherProduct->getCurrenciedPrice(), 2, ',', ' ') }} {{ \App\Helpers\CurrencyHelper::getCurrentCurrency() }}
BONUS +{{ $otherProduct->bonus_percentage }}%!
@else

{{ $otherProduct->name }}

BUY FOR: {{ number_format($otherProduct->getCurrenciedPrice(), 2, ',', ' ') }} {{ \App\Helpers\CurrencyHelper::getCurrentCurrency() }}
@endif @endif @endforeach
@endsection @section('js') @endsection