@extends('layouts.cad') @section('content')
@include('inc.cad.mdt-nav')

Plate: {{ $vehicle->plate }}

@if ($vehicle->vehicle_status == 2) Stolen VEHICLE @endif @if ($vehicle->vehicle_status == 5) Scrapped @endif

Plate:

Make:

Color:

{{ $vehicle->plate }}

{{ $vehicle->model }}

{{ $vehicle->color }}

Registration Expires:

Status:

Registered Owner:

{{ $vehicle->registration_expire->format('m/d/Y') }}

{{ $vehicle->status_name }}

@if ($vehicle->civilian) {{ $vehicle->civilian->name }} ({{ $vehicle->civilian->s_n_n }}) @elseif ($vehicle->business) {{ $vehicle->business->name }} (BUSSINESS VEHICLE) @endif

Alerts @if ($vehicle->vehicle_status == 2) Stolen @endif @if ($vehicle->business) Advise @endif

@if ($vehicle->vehicle_status == 2) Reported Stolen Vehicle @endif @if ($vehicle->business)

Registered to a Business

@endif
@if ($vehicle->civilian)

Registered Owner
@if ($vehicle->civilian->status == 2) Active Warrent @endif @if ($vehicle->civilian->is_violent) History of Violence @endif @if ($vehicle->civilian->is_weapon) History of Weapons @endif @if ($vehicle->civilian->is_ill) History of Mental Illness @endif

Address:

Driver License:

Social Security:

Phone:

Type:

Occupation:

{{ $vehicle->civilian->postal }} {{ $vehicle->civilian->street }} {{ $vehicle->civilian->city }}

12345

{{ $vehicle->civilian->s_n_n }}

123-345-9834

INDIV - Individual

{{ $vehicle->civilian->occupation }}

Age:

Birth:

Race:

Sex:

Height:

Weight:

{{ $vehicle->civilian->age }}

{{ $vehicle->civilian->date_of_birth->format('m/d/Y') }}

{{ $vehicle->civilian->race }}

{{ $vehicle->civilian->gender }}

{{ floor($vehicle->civilian->height / 12) }}' {{ $vehicle->civilian->height % 12 }}" ({{ round($vehicle->civilian->height * 2.54) }}cm)

{{ $vehicle->civilian->weight }}lb ({{ round($vehicle->civilian->weight / 2.205) }}kg)

@if (is_null($vehicle->civilian->picture)) @else @endif

Alerts
@if ($vehicle->civilian->status == 2) Active Warrent @endif @if ($vehicle->civilian->is_violent) History of Violence @endif @if ($vehicle->civilian->is_weapon) History of Weapons @endif @if ($vehicle->civilian->is_ill) History of Mental Illness @endif

@if ($vehicle->civilian->status == 2)

Active Warrent

@endif @if ($vehicle->civilian->is_violent)

History of Violence

@endif @if ($vehicle->civilian->is_weapon)

History of Weapons

@endif @if ($vehicle->civilian->is_ill)

History of Mental Illness

@endif

Licenses @php $active = 0; $expired = 0; $suspended = 0; @endphp @foreach ($vehicle->civilian->licenses as $license) @endforeach {{ $active }} Current {{ $suspended }} Suspended {{ $expired }} Expired

@foreach ($vehicle->civilian->licenses as $license)

{{ $license->license_type->name }} | {{ $license->id }} | {{ $status }} | Expires: {{ $license->expires_on->format('m/d/Y') }}

@endforeach

Vehicles @php $active = 0; $expired = 0; $impounded = 0; $stolen = 0; @endphp @foreach ($vehicle->civilian->vehicles as $vehicle) @endforeach {{ $active }} Current {{ $impounded }} Suspended {{ $stolen }} Stolen {{ $expired }} Expired

@endif
Search More Refresh Data
@if (auth()->user()->active_unit->user_department->department->type == 1) @elseif (auth()->user()->active_unit->user_department->department->type == 2)

Dispatch doesn't have options yet.

@elseif (auth()->user()->active_unit->user_department->department->type == 4) New Medical History @endif
@csrf
@endsection