Contacts @can('institutions.contacts.create') @endcan

@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
@can('institutions.contacts.edit') @endcan @can('institutions.contacts.delete') @endcan
@endforeach @else

No contacts have been added.

@endif
@if($show)
@endif