@extends('layouts.master')
@section('page_title', 'Reverse Discount')
@section('content')
Bill Amount: GHS {{ number_format($bill->due_amount, 2, '.', ',') }}
Paid: GHS {{ number_format($bill->paid_amount, 2, '.', ',') }}
Discount: GHS {{ number_format($bill->discount_value, 2, '.', ',') }}
@endsection
@section('page_scripts')
@endsection