@extends('layouts.authenticated') @section('title', 'Detail Mitra') @section('page-title', 'Detail Mitra') @section('page-content')
{{ $partner->code }}
@if($partner->is_active) Aktif @else Nonaktif @endifTelepon
{{ $partner->phone ?? '-' }}
Nama Bank
{{ $partner->nama_bank ?? '-' }}
No Rekening
{{ $partner->no_rekening ?? '-' }}
{{ $partner->email ?? '-' }}
Alamat
{{ $partner->address ?? '-' }}
Total Penjualan
Rp {{ number_format($partner->total_sales ?? 0, 0, ',', '.') }}
Fee Persentase
{{ $partner->fee_percentage ?? 20 }}%
Total Fee ABBA BENTO
Rp {{ number_format($partner->total_fee ?? 0, 0, ',', '.') }}
Jumlah Produk
{{ $products->total() }}
| Nama Produk | Kategori | Barcode | Harga | Fee |
|---|---|---|---|---|
| {{ $product->name }} | {{ $product->category_type_label ?? '-' }} | {{ $product->barcode }} |
Rp {{ number_format($product->price ?? 0, 0, ',', '.') }} | {{ $product->fee_percentage }}% |
| Belum ada produk. | ||||