@extends('layouts.app')
@section('title')
Contact: {{ $contact->name }}
@endsection
@section('description')
{{ $contact->address }}
@endsection
@section('breadcrumb')
All Contact
{{ $contact->name }}
@endsection
@section('content')
@include('contacts.attributes')
@include('contacts.maps-individual')
@include('contacts.nodes')
@include('contacts.tickets')
@if($contact->visits()->exists())
@include('contacts.visits')
@endif
@endsection
@section('scripts')
@include('contacts.scripts.maps-individual', ['contact' => $contact])
@endsection