@extends('layouts/default') {{-- Page title --}} @section('title') {{ $model->name }} {{ ($model->model_number) ? '(#'.$model->model_number.')' : '' }} @parent @stop @section('header_right') @endsection {{-- Page content --}} @section('content') @if ($model->deleted_at!='')
{{ trans('admin/models/general.deleted') }}
@endif
@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