@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('admin/maintenances/general.view') }} {{ $maintenance->name }} @parent @stop {{-- Page content --}} @section('content')
@if ($maintenance->image!='')
{{ $maintenance->name }}
@endif
    @if ($maintenance->notes)
  • {{ trans('general.notes') }}: {!! nl2br(Helper::parseEscapedMarkedownInline($maintenance->notes)) !!}
  • @endif
@can('update', $maintenance) @endcan
@can('assets.files', Asset::class) @include ('modals.upload-file', ['item_type' => 'maintenance', 'item_id' => $maintenance->id]) @endcan @stop @section('moar_scripts') @include ('partials.bootstrap-table') @stop