@extends('layouts.main') @section('content')

@if($order->payment_method === 'dp') Konfirmasi Pembayaran DP @else Konfirmasi Pembayaran Transfer @endif

@if($order->payment_method === 'dp') Upload bukti pembayaran DP untuk memproses pesanan Anda. Verifikasi akan dilakukan dalam 1x24 jam. @else Upload bukti transfer untuk memproses pesanan Anda. Verifikasi akan dilakukan dalam 1x24 jam. @endif

@if (session('success'))

{{ session('success') }}

@endif @if ($errors->any())

Terjadi kesalahan:

    @foreach ($errors->all() as $error)
  • • {{ $error }}
  • @endforeach
@endif

Informasi Rekening Bank

Bank Syariah Indonesia (BSI)

Perusahaan: PT Poljam Tech
No. Rekening: 1234567890
Atas Nama: Poljam Technology Indonesia
@if($order->payment_method === 'dp')

Cara Pembayaran DP:

  • • Transfer ke rekening BSI di atas
  • • Atau bayar tunai langsung ke workshop
  • • Upload bukti pembayaran setelah selesai
@endif

Detail Pesanan

ID Pesanan #{{ $order->id }}
Nama Pelanggan {{ $order->customer_name }}
Produk {{ $order->product->product_title ?? 'N/A' }}
@if($order->payment_method === 'dp') @php $dpPercentage = $order->dp_percentage ?? 30.00; $dpAmount = $order->total_price * ($dpPercentage / 100); $remainingAmount = $order->total_price - $dpAmount; @endphp
Total Harga {{ $order->formatted_total_price }}
DP ({{ number_format($dpPercentage, 0) }}%) Rp{{ number_format($dpAmount, 0, ',', '.') }}
Sisa Pembayaran Rp{{ number_format($remainingAmount, 0, ',', '.') }}
@else
Total Pembayaran {{ $order->formatted_total_price }}
@endif
@csrf @if($order->payment_method === 'transfer') @endif

@if($order->payment_method === 'dp') Upload Bukti Pembayaran DP @else Upload Bukti Transfer @endif

@if($order->payment_method === 'dp')
@endif

Klik untuk memilih file atau drag & drop

Format: JPG, PNG, atau PDF (Maksimal 5MB)

@error('proof_file')

{{ $message }}

@enderror

Penting: Pastikan nama pengirim dan jumlah transfer sesuai dengan data di atas. Verifikasi akan dilakukan maksimal dalam 1x24 jam setelah konfirmasi diterima.

@endsection