@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 @can('update', $model) @endcan @can('update', \App\Models\AssetModel::class) @include ('modals.upload-file', ['item_type' => 'models', 'item_id' => $model->id]) @endcan @stop @section('moar_scripts') @include ('partials.bootstrap-table', ['exportFile' => 'manufacturer' . $model->name . '-export', 'search' => false]) @stop