@extends('layout.base') @section('action') Back @endsection @section('content')
Header Logo

INVOICE

{{ ucfirst($farewell->status) }}

Invoice Number: {{ $farewell->invoice_no }}

Date: {{ \Carbon\Carbon::parse($farewell->created_at)->format('F d, Y') }}

Due Date: {{ \Carbon\Carbon::parse($farewell->due_date)->format('F d, Y') }}

Bill To:

{{ $farewell->user_name ?? '-' }} ({{ $farewell->user_email ?? '-' }})

@if ($farewell->status === 'approved') @foreach ($details as $detail) @endforeach @else @for ($i = 1; $i <= $farewell->quantity; $i++) @endfor @endif
Farewell Code
{{ $detail->farewell_code }}
{!! $detail->qr_svg !!}
person {{ $i }} - USD {{ number_format(45, 2) }}

Quantity: {{ $farewell->quantity }}

Total Amount: USD {{ number_format($farewell->amount, 2) }}

Terms and Conditions:
  1. All the payments made should be NET of any bank charges. Please state the name of the entity concerned as well as the payment purpose on the transfer with the format "DELEGATION NAME_2025 ART WCH Jakarta".
  2. All prices include applicable taxes, service charges, and transportation. Personal expenses are not included.
  3. Any charges (e.g. early check-in or late check-out) must be settled directly with the hotel.
  4. Hotel price increases may apply after 30 June 2025.
Payment to:
RPL 088 LPDUK UTK OPERASIONAL BLU VALAS
BANK MANDIRI 122-000-773975-1
SWIFT CODE: BMRIIDJA

Bank Mandiri Jakarta
Gedung Pusat Kehutanan, Jalan Jenderal Gatot Subroto, Manggala Wanabakti
Jakarta Pusat 10270, Indonesia
Thank you,

(Finance Division)
@if (!$farewell->payment_proof)
Upload Payment Proof
@csrf @error('payment_proof')
{{ $message }}
@enderror
@else
Payment Proof Uploaded
@php $extension = pathinfo($farewell->payment_proof, PATHINFO_EXTENSION); @endphp @if (in_array($extension, ['jpg', 'jpeg', 'png'])) @elseif($extension === 'pdf') View PDF @else

Uploaded file: View File

@endif @if ( (auth()->user()->role === 'admin_loc' || auth()->user()->role == 'superadmin') && $farewell->status === 'waiting_approval')
@csrf @method('PATCH')
@endif @endif
@endsection @section('scripts') @endsection