@extends('layouts.app') @section('meta') {{$mugshot->first_name}} {{$mugshot->last_name}} was arrested on {{$newBookingDate}} in Henrico, VA @endsection @section('content')
{{-- Adds --}}
@include('shared.google-add')
{{-- Contents --}}
Name: {{$mugshot->first_name}} {{$mugshot->middle_name}} {{$mugshot->last_name}} {{$mugshot->suffix}}
Location: {{$mugshot->location}}
Booking Date: {{$mugshot->booking_date}}
Race: {{$mugshot->race}}
Gender: {{$mugshot->gender}}
Charges:
{!! $mugshot->charges !!}
@if(!empty($mugshot->story) && $mugshot->story != "NULL")
Story:
{!! $mugshot->story !!}
@endif
@if($mugshot->additional_info) {{$mugshot->additional_info}} @endif
{{-- Share --}}
@endsection