@extends('layouts.admin') @section('title', 'Deduction Details') @section('content')
Merchant
{{ $deduction->merchant->name ?? '-' }} ({{ $deduction->merchant->company_name ?? '' }})
Type
{{ ucfirst(str_replace('_', ' ', $deduction->deduction_type)) }}
Amount
Rs. {{ number_format($deduction->amount, 2) }}
Date
{{ optional($deduction->deduction_date)->format('Y-m-d') }}
Status
{{ ucfirst($deduction->status) }}
Description
{{ $deduction->description ?? '-' }}