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

{{$customer->company_name}}

@endsection @section('content')
- email etc
- also known by
- active orders
@foreach($shippingEntries as $shippingEntry)
{{$shippingEntry->account_title}}
Courier
{{$shippingEntry->courier}}
Login
{{$shippingEntry->account_username}}
{{$shippingEntry->account_password}}
Required Info
{{$shippingEntry->info_needed}}
Notes
{{$shippingEntry->notes}}
@endforeach
{{-- --}}
{{--
--}}
@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()
{{-- @if($errors->any())--}} {{-- {{ implode('', $errors->all('
:message
')) }}--}} {{-- @endif--}} @include('partials.customers.edit-modal') @include('partials.customers.delete-single-modal') @include('partials.contacts.create-modal') @include('partials.contacts.delete-modal') @include('partials.packing-slips.create-modal') @include('partials.shipping-entries.create-modal') @endsection