@extends('layouts.app') @section('content')
1
2
3
4
Details
{{-- {{ $customer->company_name }}
--}} {{-- {{ $customer->shipping_address }}
--}}
Contacts
@if(sizeof($contacts) !== 0) @foreach ($contacts as $contact) @endforeach
Name Email Phone Notes
{{ $contact->first_name . ' ' . $contact->last_name }} {{ $contact->email }} {{ $contact->phone }} {{ $contact->notes }}
@else No contact information registered for this customer. @endif
@include('customers.edit-modal') @include('customers.delete-single-modal') @include('contacts.create-modal') @include('contacts.delete-modal') @endsection