@if ($trash->image)
@else
@endif
|
{{ $trash->sku }} |
{{ $trash->title }} |
{{ $trash->condition }} |
{{ get_formated_currency($trash->sale_price, 2, config('system_settings.currency.id')) }} |
{{ $trash->stock_quantity }} |
{{ $trash->deleted_at->diffForHumans() }} |
@can('delete', $trash)
{!! Form::open(['route' => ['admin.stock.inventory.destroy', $trash->id], 'method' => 'delete', 'class' => 'data-form']) !!}
{!! Form::button('', ['type' => 'submit', 'class' => 'confirm ajax-silent', 'title' => trans('app.delete_permanently'), 'data-toggle' => 'tooltip', 'data-placement' => 'top']) !!}
{!! Form::close() !!}
@endcan
|
@endforeach