{{-- HEADER --}}
{{-- SEARCH --}}
{{-- ACTIONS --}}
{{-- --}}
{{-- --}}
@can('create crm products')
@endcan
{{-- TABLE --}}
@scope('cell_xeroItem', $product)
@if($product->xeroItem)
@endif
@endscope
@scope('cell_price', $product)
{{ (isset($product->getDefaultPrice()->unit_price)) ? money($product->getDefaultPrice()->unit_price ?? null, $product->getDefaultPrice()->currency) : null }}
@endscope
@scope('cell_tax_rate', $product)
{{ $product->tax_rate ?? $product->taxRate->rate ?? 0 }}%
@endscope
@scope('actions', $product)
@can('view crm products')
@endcan
@can('edit crm products')
@endcan
@can('delete crm products')
@endcan
@endscope
{{-- FILTERS --}}
{{-- ACTIONS --}}