@extends('template.app') @section('title', 'Edit Transfer Stok') @section('css') @endsection @section('breadcrumb') @endsection @section('content')
@include('components.toast-notification')
@csrf @method('PUT')
@foreach($stockTransferDetail as $detail) @endforeach
Nama Produk Qty Transfer Harga Beli Aksi
{{ $detail->unit_name }}
Biaya Lainnya
@foreach($expenses as $expense) @endforeach
Kategori Biaya Jumlah Catatan Aksi
Pembayaran
@foreach($payments as $payment) @endforeach @php $grandTotal = $stockTransfer->total_amount + $expenses->sum('amount'); @endphp
Tanggal Bayar Metode Pembayaran Akun Bank Jumlah Bayar Catatan
payment_method == 'tempo' ? 'readonly' : '' }}>
Total Bayar:
Total Biaya Lain:
Sisa Pembayaran:
@endsection @section('js') @endsection