@extends('layouts.app') @section('content')
{{__('texte.products_arr.show.name')}}: {{ $product->name }}
{{__('texte.products_arr.show.category')}}: {{ optional($product->category)->name }}
{{__('texte.products_arr.show.package')}}: {{ optional($product->package)->name }}
{{__('texte.products_arr.show.producer')}}: {{ optional($product->producer)->name }}
{{__('texte.products_arr.show.code')}}: {{ $product->code }}
{{__('texte.products_arr.show.wrappage')}}: {{ $product->is_wrappage==1 ? __('texte.products_arr.show.yes') : __('texte.products_arr.show.no') }}
{{__('texte.products_arr.show.wrappage_piece')}}: {{ $product->wrappage_piece->name ?? '' }}
{{__('texte.products_arr.show.wrappage_package')}}: {{ $product->wrappage_package->name ?? '' }}
{{__('texte.products_arr.show.wrappage_pallet')}}: {{ $product->wrappage_pallet->name ?? '' }}
{{__('texte.products_arr.show.unit')}}: {{ __('texte.units_arr')[$product->unit]}}
{{__('texte.products_arr.show.weight')}}: {{ $product->piece_weight }}
{{__('texte.products_arr.show.barcode')}}: {{ $product->piece_barcode }}
@if($product->unit==3)
{{__('texte.products_arr.show.surface')}}: {{ $product->piece_surface }}
@endif
{{__('texte.products_arr.show.package_count')}}: {{ $product->package_count }}
{{__('texte.products_arr.show.package_weight')}}: {{ $product->package_weight }}
{{__('texte.products_arr.show.package_barcode')}}: {{ $product->package_barcode }}
@if($product->unit==3)
{{__('texte.products_arr.show.package_surface')}}: {{ $product->package_surface }}
@endif
{{__('texte.products_arr.show.pallet_count')}}: {{ $product->pallet_count }}
{{__('texte.products_arr.show.pallet_weight')}}: {{ $product->pallet_weight }}
{{__('texte.products_arr.show.prices')}}:
{{__('texte.products_arr.show.price_type')}} {{__('texte.products_arr.show.with_vat')}} {{__('texte.products_arr.show.without_vat')}}
{{__('texte.products_arr.show.supply_price')}} {{ number_format(($product->price_supply ?? 0)*1.2,5) }} {{ number_format($product->price_supply ?? 0,5) }}
{{__('texte.products_arr.show.base_price')}} {{ number_format(($product->price_base ?? 0)*1.2,5) }} {{ number_format($product->price_base ?? 0,5)}}
{{__('texte.products_arr.show.recommend_price')}} {{ number_format(($product->price_recommend ?? 0)*1.2,5) }} {{ number_format($product->price_recommend ?? 0,5) }}
{{__('texte.products_arr.show.min_stock')}}: {{ $product->min }}
{{__('texte.products_arr.show.max_stock')}}: {{ $product->max }}
{{__('texte.products_arr.show.min_sale_qty')}}: {{ $product->min_sale }}
{{__('texte.products_arr.show.max_sale_qty')}}: {{ $product->max_sale }}
{{__('texte.products_arr.show.description')}}: {!! $product->description !!}
{{__('texte.products_arr.show.active')}}: {{ $product->active==1 ? __('texte.products_arr.show.yes') : __('texte.products_arr.show.no') }}
@foreach ($product->images as $image)
{{$image->title}}
@endforeach
@endsection