@extends('layouts.cad_simple') @section('content')

{{ get_setting('state') }} UNIFORM CITATION - Copy

State of {{ get_setting('state') }} District Court

Citation No. {{ $ticket->id }}

Your Court Date and Location

@if ($ticket->plea_type == 1)

Ticket was plead guilty. No courtdate.

@elseif($ticket->plea_type == 3)

Court found Not Guilty.

@elseif($ticket->plea_type == 4)

Court found Guilty.

@elseif($ticket->plea_type == 2 || $ticket->plea_type == 0) @if (!$ticket->court_at)

Old Ticket. Contact the court directly to find out court date

@else
Court Day of Week

{{ $ticket?->court_at->format('l') }}

Date

{{ $ticket?->court_at->format('m/d/Y') }}

Time

{{ $ticket?->court_at->format('H:i') }}

Court Location

{{ $ticket->court_location ?? 'TBD' }}

Courtroom

{{ $ticket->courtroom ?? 'TBD' }}

Agency Case Number

{{ $ticket->call?->id }}

@endif @endif

The State of {{ get_setting('state') }} VS.

Drivers License No

{{ $ticket->license?->id }}

State

{{ get_setting('state') }}

Name

{{ $ticket->civilian->name }}

{{-- --}}
Race

{{ $ticket->civilian->race }}

Gender

{{ $ticket->civilian->gender }}

Suspend License

{{ $ticket->license_was_suspended ? 'Yes' : 'No' }}

Type

{{ $ticket?->license->license_type->name }}

Address

{{ $ticket->civilian->postal }} {{ $ticket->civilian->street }}

City

{{ $ticket->civilian->city }}

State

{{ get_setting('state') }}

Phone #

{{ $ticket->civilian->phone_number }}

Height

{{ $ticket->civilian->height }}

Weight

{{ $ticket->civilian->weight }}

Social Security No.

{{ $ticket->civilian->s_n_n }}

Date of Birth

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

Age

{{ $ticket->civilian->age }}

What you are charged with

The officer named below has probable cause to believe that on or about {{ $ticket->offense_occured_at->format('l') }}, the {{ $ticket->offense_occured_at->format('d') }} day of {{ $ticket->offense_occured_at->format('M') }} at {{ $ticket->offense_occured_at->format('H:i') }} in the county named above you did unlawfully and willfully

Charges @foreach ($ticket->charges as $charge)

{{ $charge->penal_code->name }} (x{{ $charge->counts }})

@endforeach

Your Vehicle

Plate

{{ $ticket->vehicle?->plate }}

Make

{{ $ticket->vehicle?->model }}

Color

{{ $ticket->vehicle?->color }}

Impound Vehicle

{{ $ticket->vehicle_was_impounded ? 'Yes' : 'No' }}

Other Information

On Highway/Street

{{ $ticket->highway_street }}

Weather

{{ $ticket->weather }}

Traffic

{{ $ticket->traffic }}

Speed

{{ $ticket->speed }}mph in a {{ $ticket->speed_zone }}mph zone

Speed Clocked Mode

{{ $ticket->speed_clocked_mode }}

DUI

{{ $ticket->is_dui ? 'Y' : 'N' }} - M: {{ $ticket->dui_test_method }} R: {{ $ticket->dui_test_result }}

Drugs

{{ $ticket->is_drugs ? 'Y' : 'N' }}

In Vicinity/City Of

{{ $ticket->in_city_of }}

At/Near Intersection

{{ $ticket->at_intersection }}

Charging Officer Information

Date

{{ $ticket->updated_at->format('m/d/Y H:i') }}

Officer

{{ $ticket->officer->name }}

Badge Number

{{ $ticket->officer->user_department->badge_number }}

Agency

{{ $ticket->officer->user_department->department->initials }}

@endsection