Viewing file: organization.blade.php (3.29 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
{!! view_render_event('admin.contacts.persons.view.organization.before', ['person' => $person]) !!}
@if ($person?->organization) <div class="flex w-full flex-col gap-4 border-b border-gray-200 p-4 dark:border-gray-800"> <h4 class="flex items-center justify-between font-semibold dark:text-white"> @lang('admin::app.contacts.persons.view.about-organization')
<a href="{{ route('admin.contacts.organizations.edit', $person->organization->id) }}" class="icon-edit rounded-md p-1 text-2xl transition-all hover:bg-gray-100 dark:hover:bg-gray-950" target="_blank" ></a> </h4>
<div class="flex gap-2"> {!! view_render_event('admin.contacts.persons.view.organization.avatar.before', ['person' => $person]) !!}
<!-- Organization Initials --> <x-admin::avatar :name="$person->organization->name" />
{!! view_render_event('admin.contacts.persons.view.organization.avatar.after', ['person' => $person]) !!}
<!-- Organization Details --> <div class="flex flex-col gap-1"> {!! view_render_event('admin.contacts.persons.view.organization.name.before', ['person' => $person]) !!}
<span class="font-semibold text-brandColor"> {{ $person->organization->name }} </span>
{!! view_render_event('admin.contacts.persons.view.organization.name.after', ['person' => $person]) !!}
{!! view_render_event('admin.contacts.persons.view.organization.address.before', ['person' => $person]) !!}
@if ($person->organization->address) <div class="flex flex-col gap-0.5 dark:text-white"> @isset($person->organization->address['address']) <span> {{ $person->organization->address['address'] }} </span> @endisset
@if( isset($person->organization->address['postcode']) && isset($person->organization->address['city']) ) <span> {{ $person->organization->address['postcode'] . ' ' . $person->organization->address['city'] }} </span> @endif
@isset($person->organization->address['state']) <span> {{ core()->state_name($person->organization->address['state']) }} </span> @endisset
@isset($person->organization->address['country']) <span> {{ core()->country_name($person->organization->address['country']) }} </span> @endisset </div> @endif
{!! view_render_event('admin.contacts.persons.view.organization.address.after', ['person' => $person]) !!} </div> </div> </div> @endif
{!! view_render_event('admin.contacts.persons.view.organization.after', ['person' => $person]) !!}
|