@extends('layouts.app') @section('title', 'Details') @section('content')

{{$customer->company_name}} - Details

@if(session('success'))
{{ session('success') }}
@endif @if ($errors->any())
{!! implode('
', $errors->all(':message')) !!}
@endif
user-avatar
@csrf

Contact List

@foreach($contacts as $contact) @endforeach
Name Email Phone Actions
{{ $contact->name }} {{ $contact->email }} {{ $contact->phone }}
@endsection @section('js') @endsection