@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.active')}}: {{ $product->active==1 ? __('texte.products_arr.show.yes') : __('texte.products_arr.show.no') }}
@endsection