@extends('layouts.app') @section('header')

{{$customer->company_name}}

@endsection @section('content')
test
2
@foreach($packingSlips as $packingSlip) @endforeach
Date PO Amount Contents
{{$packingSlip->date_received}} {{$packingSlip->order_id}} {{$packingSlip->amount}} {{$packingSlip->contents}}
{{$packingSlips->links()}}
@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 contacts registered for this customer. @endif()
@include('customers.edit-modal') @include('customers.delete-single-modal') @include('contacts.create-modal') @include('contacts.delete-modal') @endsection