@extends('layouts.admin') {{-- Web site Title --}} @section('title', __('record/title.record_show')) {{-- Content Header --}} @section('header') {{ __('record/title.record_show') }} {{ __('record/title.record_show_subtitle', ['record' => $record->name]) }} @endsection {{-- Breadcrumbs --}} @section('breadcrumbs')
  • {{ __('site.dashboard') }}
  • {{ __('site.records') }}
  • {{ __('record/title.record_show') }}
  • @endsection {{-- Content --}} @section('content') @include('partials.notifications') @include('record/_details', ['action' => 'show']) @endsection