@extends('app') @php $item = $product; @endphp @section('content')
{{-- @include('layouts.header') --}}

{{$product->name}}

Параметры

Название

Артикул системы

Бренд

Цена

@if ($product->discount_price)

Цена со скидкой

@endif

Количество

Категория

Внешний вид

Цвет

Материал

Вес

Размеры

Описание
{{-- @foreach ($product->attributes as $attribute)

{{ $attribute->key }}

@endforeach --}}
@php $recentlyViewedProducts = $recentlyViewedProducts ?? collect(); @endphp @if($recentlyViewedProducts->isNotEmpty())
Вы просматривали
@foreach($recentlyViewedProducts as $product)

@if($product->discount_price) {{ number_format($product->price, 0, '.', ' ') }} руб. {{ number_format($product->discount_price, 0, '.', ' ') }} руб. @else {{ number_format($product->price, 0, '.', ' ') }} руб. @endif

{{ $product->name }}
В наличии {{ $product->quantity }} шт.
@csrf Перейти в магазин
@if($product->discount)
-{{ $product->discount }}%
@endif
@endforeach
@endif
@endsection