@extends('layouts.cad_simple') @section('content')
Close @if (auth()->user()->id == $report->user_id) Edit @endif
{{--

POLICE REPORT

--}}

Report No: {{ str_pad($report->id, 5, 0, STR_PAD_LEFT) }}

Call No: {{ str_pad($report->call_id, 5, 0, STR_PAD_LEFT) }}

Date: {{ $report->created_at->format('m/d/Y') }}

Reporting Officer: {{ $report->officer->name ?? $report->user->preferred_name }}

Report Type: {{ $report->report_type->title }}

Report Title: {{ $report->title }}


{!! Str::markdown($report->text) !!}

@endsection