Deploy Ladill Woo Manager / deploy (push) Failing after 2s
Standalone app with SSO shell, WordPress plugin connect flow, webhook ingest, fulfillment inbox, and plugin activation API — no payment processing. Co-authored-by: Cursor <cursoragent@cursor.com>
25 lines
1.1 KiB
PHP
25 lines
1.1 KiB
PHP
@php
|
|
$company = $invoice->company_snapshot ?? [];
|
|
$logoUrl = $invoice->logoPath() ? route('woo.public.logo', $invoice->public_token) : null;
|
|
@endphp
|
|
<div class="mx-auto max-w-3xl px-2 py-4">
|
|
<div class="mb-8 flex items-start justify-between gap-4">
|
|
<div>
|
|
@if($logoUrl)
|
|
<img src="{{ $logoUrl }}" alt="" class="mb-3 h-10 w-auto object-contain">
|
|
@endif
|
|
<p class="text-lg font-medium text-slate-900">{{ $company['company_name'] ?? 'Company' }}</p>
|
|
</div>
|
|
<div class="text-right text-sm text-slate-500">
|
|
<p>{{ $invoice->invoice_number }}</p>
|
|
<p>{{ $invoice->issue_date->format('M j, Y') }}</p>
|
|
</div>
|
|
</div>
|
|
<div class="mb-8 border-b border-slate-200 pb-6">
|
|
<p class="text-xs uppercase tracking-widest text-slate-400">Bill to</p>
|
|
<p class="mt-1 font-medium text-slate-900">{{ $invoice->client_name }}</p>
|
|
@if($invoice->client_email)<p class="text-sm text-slate-500">{{ $invoice->client_email }}</p>@endif
|
|
</div>
|
|
@include('invoices.templates._body', ['showPay' => $showPay ?? false])
|
|
</div>
|