{{ __('Details') }} :
{{ __('Name') }}
{{ $productService->name }}
{{ __('SKU') }}
{{ $productService->sku }}
@if ($productService->type == 'product' || 'parts')
{{ __('Quantity') }}
{{ $productService->quantity }}
@else
-
@endif
{{ __('Tax') }}
@php
$tax_id = explode(',', $productService->tax_id);
$tax_names = \Workdo\ProductService\Entities\Tax::whereIn('id', $tax_id)->get();
@endphp
@foreach ($tax_names as $tax_name)
{{ $tax_name->name }}
@endforeach
{{ __('Description') }}
{{ $productService->description }}
@if(module_is_active('CustomField') && !empty($customFields) && count($customFields) > 0)
@foreach($customFields as $field)
@php
$value = isset($productService->customField[$field->id]) ? $productService->customField[$field->id] : '';
@endphp
@if(!empty($value))
{{ $field->name }}
@if($field->type == 'attachment')
{{ __('View File') }}
@elseif($field->type == 'checkbox')
{{ str_replace(',', ', ', $value) }}
@else
{{ $value }}
@endif
@endif
@endforeach
@endif
{{-- if warranty add on active and warranty is active then warranty details show --}}
@stack('warranty-details')