@can('view', $inventory)
@endcan
@if (is_catalog_enabled())
@can('update', $inventory)
@endcan
@else
@can('update', $inventory->product)
@endcan
@endif
@can('update', $inventory)
$inventory, 'language' => config('system_settings.default_language')]) }}>
@endcan
@can('delete', $inventory)
{!! Form::open(['route' => ['admin.stock.inventory.trash', $inventory->id], 'method' => 'delete', 'class' => 'data-form']) !!}
{!! Form::button('', ['type' => 'submit', 'class' => 'confirm ajax-silent', 'title' => trans('app.trash'), 'data-toggle' => 'tooltip', 'data-placement' => 'top']) !!}
{!! Form::close() !!}
@endcan