@extends('layouts.app') @section('style') {{-- We only need styles for the dashboard view, not for printing --}} @endsection @section('content')
Payment Details
{{-- The Print button now links to our dedicated print route --}} Print Edit
{{-- This includes our new, styled payslip for the preview --}} @include('payments.payslip_content')

Payment Summary Cards
CASH BOND (After)

₱{{ number_format($payment->cash_bond_amount, 2) }}

LOAN BALANCE (After)

₱{{ number_format($payment->loan_amount, 2) }}

TOTAL NET PAY

₱{{ number_format($payment->total, 2) }}

{{-- Include your modals for delete confirmation here --}} @endsection @section('script') @endsection