Contacts
@if($institution->contacts()->count())
@foreach($institution->contacts as $contact)
{{ $contact->name }}
{{ $contact->job_title }}
@if($contact->email)
{{ $contact->email }}
@endif
@if($contact->mobile)
{{ $contact->mobile }}
@endif
@if($contact->telephone)
{{ $contact->telephone }}
@endif
@endforeach
@else
No contacts have been added.
@endif
@if($show)