@extends('shop/layout') @section('shop')

Back to {{$product->category->title}}

{{ csrf_field() }}

{{$product->title}}

@if($product->seller) @endif
@foreach ($product->attributes as $attribute) {{$attribute->title }} : {{$attribute->pivot->value}}
@endforeach
Price : {{$product->price}} € @if(!empty($product->seller->datas['currency'])) / {{$product->priceInSellerCurrency(true)}} @endif
Quantity :
@stop