@extends('layouts.authenticated') @section('title', 'Detail Mitra') @section('page-title', 'Detail Mitra') @section('page-content')
Kembali ke Daftar Mitra
{{ strtoupper(substr($partner->name, 0, 1)) }}

{{ $partner->name }}

{{ $partner->code }}

@if($partner->is_active) Aktif @else Nonaktif @endif

Informasi Mitra

Telepon

{{ $partner->phone ?? '-' }}

Nama Bank

{{ $partner->nama_bank ?? '-' }}

No Rekening

{{ $partner->no_rekening ?? '-' }}

Email

{{ $partner->email ?? '-' }}

Alamat

{{ $partner->address ?? '-' }}

Ringkasan Penjualan

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() }}

Produk Mitra

@forelse($products as $product) @empty @endforelse
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.
@if($products->hasPages())
{{ $products->links() }}
@endif
@endsection