2021-09-14 20:57:33 +02:00
|
|
|
<div>
|
2021-09-14 21:14:54 +02:00
|
|
|
<div class="flex flex-col md:flex-row md:justify-between">
|
|
|
|
<div class="flex flex-col md:flex-row md:items-center">
|
2021-09-15 17:21:16 +02:00
|
|
|
{{-- <label for="status" class="flex items-center mr-4">
|
2021-09-14 21:14:54 +02:00
|
|
|
<span class="mr-2">{{ ctrans('texts.status') }}</span>
|
|
|
|
<select class="input">
|
|
|
|
<option value="all">{{ ctrans('texts.all') }}</option>
|
|
|
|
<option value="unpaid">{{ ctrans('texts.unpaid') }}</option>
|
|
|
|
<option value="paid">{{ ctrans('texts.paid') }}</option>
|
|
|
|
</select>
|
2021-09-15 17:21:16 +02:00
|
|
|
</label> <!-- End status dropdown --> --}}
|
2021-09-14 20:57:33 +02:00
|
|
|
|
2021-09-14 21:14:54 +02:00
|
|
|
<div class="flex">
|
|
|
|
<label for="from" class="block w-full flex items-center mr-4">
|
|
|
|
<span class="mr-2">{{ ctrans('texts.from') }}:</span>
|
2021-09-15 17:21:16 +02:00
|
|
|
<input wire:model="options.start_date" type="date" class="input w-full">
|
2021-09-14 21:14:54 +02:00
|
|
|
</label>
|
2021-09-14 20:57:33 +02:00
|
|
|
|
2021-09-14 21:14:54 +02:00
|
|
|
<label for="to" class="block w-full flex items-center mr-4">
|
|
|
|
<span class="mr-2">{{ ctrans('texts.to') }}:</span>
|
2021-09-15 17:21:16 +02:00
|
|
|
<input wire:model="options.end_date" type="date" class="input w-full">
|
2021-09-14 21:14:54 +02:00
|
|
|
</label>
|
|
|
|
</div> <!-- End date range -->
|
2021-09-14 20:57:33 +02:00
|
|
|
|
2021-09-14 21:14:54 +02:00
|
|
|
<label for="show_payments" class="block flex items-center mr-4 mt-4 md:mt-0">
|
2021-09-15 17:21:16 +02:00
|
|
|
<input wire:model="options.show_payments_table" type="checkbox" class="form-checkbox" autocomplete="off">
|
2021-09-14 21:14:54 +02:00
|
|
|
<span class="ml-2">{{ ctrans('texts.show_payments') }}</span>
|
|
|
|
</label> <!-- End show payments checkbox -->
|
2021-09-14 20:57:33 +02:00
|
|
|
|
2021-09-14 21:14:54 +02:00
|
|
|
<label for="show_aging" class="block flex items-center">
|
2021-09-15 17:21:16 +02:00
|
|
|
<input wire:model="options.show_aging_table" type="checkbox" class="form-checkbox" autocomplete="off">
|
2021-09-14 21:14:54 +02:00
|
|
|
<span class="ml-2">{{ ctrans('texts.show_aging') }}</span>
|
|
|
|
</label> <!-- End show aging checkbox -->
|
|
|
|
</div>
|
2021-09-15 17:21:16 +02:00
|
|
|
<button wire:click="download" class="button button-primary bg-primary mt-4 md:mt-0">{{ ctrans('texts.download') }}</button>
|
2021-09-14 20:57:33 +02:00
|
|
|
</div>
|
2021-09-15 17:21:16 +02:00
|
|
|
|
|
|
|
@include('portal.ninja2020.components.pdf-viewer', ['url' => $url])
|
2021-09-14 21:14:54 +02:00
|
|
|
</div>
|