@php $platformFee = \App\Models\WabaPlatformSetting::billing('self_service_platform_fee', 50); $platformFeePercent = \App\Models\WabaPlatformSetting::billing('self_service_platform_fee_percent', 0); $lowBalanceThreshold = \App\Models\WabaPlatformSetting::billing('low_balance_threshold', 10000); $defaultMessagePrice = \App\Models\WabaPlatformSetting::billing('default_message_price', 366); @endphp

Pengaturan Billing

Konfigurasi biaya platform dan harga pesan

Rp {{ number_format($platformFee, 0, ',', '.') }}

Platform Fee / Pesan

{{ $platformFeePercent }}%

Fee Persentase

Rp {{ number_format($lowBalanceThreshold, 0, ',', '.') }}

Batas Saldo Rendah

Rp {{ number_format($defaultMessagePrice, 0, ',', '.') }}

Harga Default / Pesan
Biaya Platform Self Service

Biaya yang dibebankan ke client Self Service per pesan. Bisa berupa fixed fee, persentase, atau kombinasi keduanya.

@foreach($settings[$groupKey] ?? [] as $setting) @if($setting['key'] === 'self_service_platform_fee')
Rp / pesan
Biaya tetap per pesan yang dikenakan ke client Self Service
@endif @if($setting['key'] === 'self_service_platform_fee_percent')
%
Persentase dari biaya Meta yang ditambahkan sebagai platform fee
@endif @endforeach
Contoh Perhitungan:

Jika biaya Meta = Rp 300, Fee Fixed = Rp 50, Fee % = 10%
Total = Rp 300 + Rp 50 + (10% × 300) = Rp 380

Pengaturan Lainnya
@foreach($settings[$groupKey] ?? [] as $setting) @if($setting['key'] === 'default_message_price')
Rp
Harga default jika tidak ada pricing template spesifik dari Meta
@endif @if($setting['key'] === 'low_balance_threshold')
Rp
Client akan mendapat notifikasi jika saldo di bawah nilai ini
@endif @endforeach
Tips:
  • Set batas saldo rendah sesuai dengan rata-rata pemakaian harian client
  • Harga default digunakan untuk template baru yang belum ada di pricing Meta