{{ __('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 warranty add on active and warranty is active then warranty details show --}}
@stack('warranty-details')