18 lines
600 B
PHP
Raw Normal View History

2022-06-01 10:15:55 +03:00
<x-form.section>
<x-slot name="foot">
<div class="flex justify-end">
<x-form.buttons cancel-route="{{ $cancelRoute }}" />
@if (! $hideSendTo)
<x-button
2022-06-01 16:54:23 +03:00
id="invoice-send-to"
2022-06-01 10:15:55 +03:00
class="relative flex items-center justify-center bg-green hover:bg-green-700 text-white px-6 py-1.5 ltr:ml-2 rtl:mr-2 text-base rounded-lg disabled:bg-green-100"
override="class"
>
{{ trans('general.send_to') }}
</x-button>
@endif
2020-12-24 01:28:38 +03:00
</div>
2022-06-01 10:15:55 +03:00
</x-slot>
</x-form.section>