@if ($model->deleted_at!='')
{{ trans('admin/models/general.deleted') }}
@endif
{{-- AssetModel history is limited to model-level
events (create / update / delete on the
model itself). Models aren't checked out
and don't get files uploaded to them, so
hide the columns that only carry data for
per-asset checkout / adjust-quantity flows.
`item` is redundant since every row is
this same model. --}}
@endsection
@section('moar_scripts')
@can('files', $model)
@include ('modals.upload-file', ['item_type' => 'models', 'item_id' => $model->id])
@endcan
@include ('partials.bootstrap-table', ['exportFile' => 'models-' . $model->name . '-export', 'search' => false])
@endsection