32 lines
830 B
PHP
32 lines
830 B
PHP
<x-layouts.admin>
|
|
<x-slot name="title">
|
|
{{ $customer->name }}
|
|
</x-slot>
|
|
|
|
<x-slot name="status">
|
|
@if (! $customer->enabled)
|
|
<x-index.disable text="{{ trans_choice('general.customers', 1) }}" />
|
|
@endif
|
|
</x-slot>
|
|
|
|
<x-slot name="favorite"
|
|
title="{{ $customer->name }}"
|
|
icon="person"
|
|
:route="['customers.show', $customer->id]"
|
|
></x-slot>
|
|
|
|
<x-slot name="buttons">
|
|
<x-contacts.show.buttons type="customer" :model="$customer" />
|
|
</x-slot>
|
|
|
|
<x-slot name="moreButtons">
|
|
<x-contacts.show.more-buttons type="customer" :model="$customer" />
|
|
</x-slot>
|
|
|
|
<x-slot name="content">
|
|
<x-contacts.show.content type="customer" :model="$customer" />
|
|
</x-slot>
|
|
|
|
<x-contacts.script type="customer" />
|
|
</x-layouts.admin>
|