@extends('layouts.base')
@section('content')
RELATORIO DE OCORRÊNCIA
Criado: {{ $report->created_at->format('d-m-y H:i') }} | Atualizado: {{ $report->updated_at->format('d-m-y H:i') }}
- Coordenador: {{ $report->user->name }}
- Agente escalado: {{ $report->employee->name }} - {{ $report->employee->registration_number }}
- Tel. Fixo: {{ $report->employee->phone }}
- Tel. celular: {{ $report->employee->cell_phone }}
- Email: {{ $report->employee->email }}
- Unidade: {{ $report->building->name }}
- Endereço: {{ $report->building->address }}
- Descrição: {{ $report->building->description }}
Ocorrência
Data da ocorrência: {{ (\DateTime::createFromFormat('Y-m-d', $report->occurrence_date))->format('d-m-Y') }}
{!! $report->description !!}
@foreach($report->report_images as $img)

@endforeach