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

Non-Guilty Tickets

San Andreas Court

@foreach ($non_guilty as $ticket) {{-- --}}
@if (isset($ticket->call->id))

Case No. {{ $ticket->call->id }}

@else

Case No. Not Linked

@endif

Cause: Non-Guilty Plea

Plaintiff

State of San Andreas

Defendant

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

Charges

@foreach ($ticket->charges as $charge) @if (!$loop->last) {{ $charge->penal_code->name }} (x{{ $charge->counts }}), @else {{ $charge->penal_code->name }} (x{{ $charge->counts }}) @endif @endforeach
{{--
--}} @endforeach
@endsection