@include('top')
| {{__('default.manufacturer')}} | {{$manufacturer->name ?? 'N/A'}} | ||
|---|---|---|---|
| {{__('default.code')}} | {{$part->code ?? 'N/A'}} | ||
| {{__('default.new_code')}} | @if (app()->getLocale() === 'pl'){{$part->code_new}} | @elseif (app()->getLocale() === 'lt'){{$part->code_new}} | @else{{$part->code_new}} | @endif
| {{__('default.discontinued')}} | {{($part->discontinued ?? false) == true ? __('default.yes') : __('default.no')}} | ||
| {{__('default.description')}} | {{$part->description ?? ''}} | ||
| {{__('default.price_vat')}} | {{ number_format($part->price_vat, 2) }} € | ||
| {{__('default.delivery')}} | {{ str_replace(__('default.working_days'), '', $part->delivery_days) }} {{ __('default.working_days') }} | ||
| {{__('default.minimum_order')}} | {{$part->vpe ?? ''}} | ||
| {{__('default.check_price')}} | |||