{{ $item->id }} |
@if($item->state_name)
{{ $item->state_name }} |
@else
— |
@endif
@if($item->city_name)
{{ $item->city_name }} |
@else
— |
@endif
@if($item->zip_code)
{{ $item->zip_code }} |
@else
— |
@endif
{{ ($item->adjustment_price < 0 ? '-' : '') . format_price($item->adjustment_price) }}
{!! Html::tag('small', '(' . format_price(max($item->adjustment_price + $item->shippingRule->price, 0)) . ')', [
'class' => 'text-info ms-1',
]) !!}
|
@if ($item->is_enabled)
{!! Html::tag('span', trans('core/base::base.yes'), ['class' => 'text-primary']) !!}
@else
{!! Html::tag('span', trans('core/base::base.no'), ['class' => 'text-secondary']) !!}
@endif
|
{{ BaseHelper::formatDate($item->created_at) }} |
@if ($hasOperations)
@if (Auth::user()->hasPermission('ecommerce.shipping-rule-items.edit'))
@endif
@if (Auth::user()->hasPermission('ecommerce.shipping-rule-items.destroy'))
@endif
|
@endif