@extends('adminlte::page') @section('title', 'Detalles del Oficio') @section('content_header')

Detalles del Oficio

@stop @section('content')

Datos Registrados

{{ $oficio->numero_oficio }}

{{ $oficio->descripcion }}

{{ $oficio->created_at->format('d-m-Y') }}

@if ($oficio->pdf_path)

Ver archivo PDF

@endif @if ($oficio->fotos)
@foreach ($oficio->fotos as $foto)
Foto del Oficio
@endforeach
@endif
@stop @section('css') @stop @section('js') @stop