Prepare Excel reports.

This commit is contained in:
2025-01-17 13:43:19 +01:00
parent 6427dfdc5d
commit fda3e13ca9
8 changed files with 126 additions and 8 deletions

View File

@@ -1,8 +1,13 @@
<x-app-layout>
<x-slot name="header">
<h2 class="font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight">
{{ __('invoice.Invoices') }}
</h2>
<div class="flex flex-row w-full">
<h2 class="grow font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight">
{{ __('invoice.Invoices') }}
</h2>
<a href="{{ route('excel') }}" class="relative flex flex-row">
<x-excel-icon class="text-gray-800 cursor-pointer"/>
</a>
</div>
</x-slot>
<div class="py-12">
@@ -18,7 +23,6 @@
<p class="mt-1 text-sm text-gray-600 dark:text-gray-400">
{{ __("invoice.Add new invoice by clicking add") }}
</p>
</header>
<a class="mt-6 inline-block" href="{{ route('invoice.create') }}"><x-primary-button>{{ __('form.Add') }}</x-primary-button></a>
</section>