123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- <x-company.invoice.container class="modern-template-container">
- <!-- Colored Header with Logo -->
- <x-company.invoice.header class="bg-gray-800 h-24">
- <!-- Logo -->
- <div class="w-2/3">
- @if($document->logo && $document->showLogo)
- <x-company.invoice.logo class="ml-8" :src="$document->logo"/>
- @endif
- </div>
-
- <!-- Ribbon Container -->
- <div class="w-1/3 absolute right-0 top-0 p-3 h-32 flex flex-col justify-end rounded-bl-sm"
- style="background: {{ $document->accentColor }};">
- @if($document->header)
- <h1 class="text-4xl font-bold text-white text-center uppercase">{{ $document->header }}</h1>
- @endif
- </div>
- </x-company.invoice.header>
-
- <!-- Company Details -->
- <x-company.invoice.metadata class="modern-template-metadata space-y-8">
- <div class="text-sm">
- <h2 class="text-lg font-semibold">{{ $document->company->name }}</h2>
- @if($formattedAddress = $document->company->getFormattedAddressHtml())
- {!! $formattedAddress !!}
- @endif
- </div>
-
- <div class="flex justify-between items-end">
- <!-- Billing Details -->
- <div class="text-sm tracking-tight">
- <h3 class="text-gray-600 dark:text-gray-400 font-medium tracking-tight mb-1">BILL TO</h3>
- <p class="text-base font-bold"
- style="color: {{ $document->accentColor }}">{{ $document->client->name }}</p>
-
- @if($formattedAddress = $document->client->getFormattedAddressHtml())
- {!! $formattedAddress !!}
- @endif
- </div>
-
- <div class="text-sm tracking-tight">
- <table class="min-w-full">
- <tbody>
- <tr>
- <td class="font-semibold text-right pr-2">{{ $document->label->number }}:</td>
- <td class="text-left pl-2">{{ $document->number }}</td>
- </tr>
- @if($document->referenceNumber)
- <tr>
- <td class="font-semibold text-right pr-2">{{ $document->label->referenceNumber }}:</td>
- <td class="text-left pl-2">{{ $document->referenceNumber }}</td>
- </tr>
- @endif
- <tr>
- <td class="font-semibold text-right pr-2">{{ $document->label->date }}:</td>
- <td class="text-left pl-2">{{ $document->date }}</td>
- </tr>
- <tr>
- <td class="font-semibold text-right pr-2">{{ $document->label->dueDate }}:</td>
- <td class="text-left pl-2">{{ $document->dueDate }}</td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- </x-company.invoice.metadata>
-
- <!-- Line Items Table -->
- <x-company.invoice.line-items class="modern-template-line-items">
- <table class="w-full text-left table-fixed">
- <thead class="text-sm leading-relaxed">
- <tr class="text-gray-600 dark:text-gray-400">
- <th class="text-left pl-6 w-[50%] py-4">{{ $document->columnLabel->items }}</th>
- <th class="text-center w-[10%] py-4">{{ $document->columnLabel->units }}</th>
- <th class="text-right w-[20%] py-4">{{ $document->columnLabel->price }}</th>
- <th class="text-right pr-6 w-[20%] py-4">{{ $document->columnLabel->amount }}</th>
- </tr>
- </thead>
- <tbody class="text-sm tracking-tight border-y-2">
- @foreach($document->lineItems as $index => $item)
- <tr @class(['bg-gray-100 dark:bg-gray-800' => $index % 2 === 0])>
- <td class="text-left pl-6 font-semibold py-3">
- {{ $item->name }}
- @if($item->description)
- <div class="text-gray-600 font-normal line-clamp-2 mt-1">{{ $item->description }}</div>
- @endif
- </td>
- <td class="text-center py-3">{{ $item->quantity }}</td>
- <td class="text-right py-3">{{ $item->unitPrice }}</td>
- <td class="text-right pr-6 py-3">{{ $item->subtotal }}</td>
- </tr>
- @endforeach
- </tbody>
- <tfoot class="text-sm tracking-tight summary-section">
- <tr>
- <td class="pl-6 py-2" colspan="2"></td>
- <td class="text-right font-semibold py-2">Subtotal:</td>
- <td class="text-right pr-6 py-2">{{ $document->subtotal }}</td>
- </tr>
- @if($document->discount)
- <tr class="text-success-800 dark:text-success-600">
- <td class="pl-6 py-2" colspan="2"></td>
- <td class="text-right py-2">Discount:</td>
- <td class="text-right pr-6 py-2">
- ({{ $document->discount }})
- </td>
- </tr>
- @endif
- @if($document->tax)
- <tr>
- <td class="pl-6 py-2" colspan="2"></td>
- <td class="text-right py-2">Tax:</td>
- <td class="text-right pr-6 py-2">{{ $document->tax }}</td>
- </tr>
- @endif
- <tr>
- <td class="pl-6 py-2" colspan="2"></td>
- <td class="text-right font-semibold border-t py-2">Total:</td>
- <td class="text-right border-t pr-6 py-2">{{ $document->total }}</td>
- </tr>
- @if($document->amountDue)
- <tr>
- <td class="pl-6 py-2" colspan="2"></td>
- <td class="text-right font-semibold border-t-4 border-double py-2">{{ $document->label->amountDue }}
- ({{ $document->currencyCode }}):
- </td>
- <td class="text-right border-t-4 border-double pr-6 py-2">{{ $document->amountDue }}</td>
- </tr>
- @endif
- </tfoot>
- </table>
- </x-company.invoice.line-items>
-
- <!-- Footer Notes -->
- <x-company.invoice.footer class="modern-template-footer tracking-tight">
- <h4 class="font-semibold px-6 text-sm" style="color: {{ $document->accentColor }}">
- Terms & Conditions
- </h4>
- <span class="border-t-2 my-2 border-gray-300 block w-full"></span>
- <div class="flex justify-between space-x-4 px-6 text-sm">
- <p class="w-1/2 break-words line-clamp-4">{{ $document->terms }}</p>
- <p class="w-1/2 break-words line-clamp-4">{{ $document->footer }}</p>
- </div>
- </x-company.invoice.footer>
- </x-company.invoice.container>
|