@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('admin/models/table.view') }} {{ $model->model_tag }} @parent @stop @section('header_right') @can('update', \App\Models\AssetModel::class)
@endcan @stop {{-- Page content --}} @section('content')
@if ($model->id)

{{ $model->name }} {{ ($model->model_number) ? '(#'.$model->model_number.')' : '' }}

@endif
@include('partials.asset-bulk-actions')
{{ Form::close() }}

{{ trans('general.moreinfo') }}:

@if ($model->image) @endif @if ($model->note) Notes:

{!! $model->present()->note() !!}

@endif
@stop @section('moar_scripts') @include ('partials.bootstrap-table') @stop