54 lines
2.4 KiB
PHP
Raw Normal View History

2022-06-01 10:15:55 +03:00
<x-show.accordion type="send" :open="($accordionActive == 'send')">
<x-slot name="head">
<x-show.accordion.head
title="{{ trans('general.send') }}"
description="{!! trans($description, [
'user' => $document->owner->name,
'date' => $sent_date,
]) !!}"
/>
</x-slot>
<x-slot name="body">
<div class="flex flex-wrap space-x-3 rtl:space-x-reverse">
@if (! $hideEmail)
@if ($document->contact_email)
<x-button id="show-slider-actions-send-email-{{ $document->type }}" kind="secondary" @click="onSendEmail('{{ route($emailRoute, $document->id) }}')">
2022-06-01 10:15:55 +03:00
{{ trans($textEmail) }}
</x-button>
@else
<x-tooltip message="{{ trans('invoices.messages.email_required') }}" placement="top">
<x-dropdown.button disabled="disabled">
{{ trans($textEmail) }}
</x-dropdown.button>
</x-tooltip>
@endif
@endif
@if (! $hideMarkSent)
@can($permissionUpdate)
@if ($document->status == 'draft')
<x-link
x-data="{ clicked: false }" x-on:click="clicked = true" x-bind:class="{ 'pointer-events-none cursor-default': clicked }" x-bind:disabled="clicked"
id="show-slider-actions-mark-sent-{{ $document->type }}" href="{{ route($markSentRoute, $document->id) }}" @click="e => e.target.classList.add('disabled')">
2022-06-01 10:15:55 +03:00
{{ trans($textMarkSent) }}
</x-link>
@else
<x-button disabled="disabled">
{{ trans($textMarkSent) }}
</x-button>
@endif
@endcan
@endif
@if (! $hideShare)
@if ($document->status != 'cancelled')
2022-09-06 13:54:56 +03:00
<x-button id="show-slider-actions-share-link-{{ $document->type }}" @click="onShareLink('{{ route($shareRoute, $document->id) }}')">
2022-06-01 10:15:55 +03:00
{{ trans('general.share_link') }}
</x-button>
@endif
@endif
</div>
</x-slot>
</x-show.accordion>