@extends('layouts.admin') @section('title', 'Deduction Details') @section('content')
← Back to Deductions

Deduction #{{ $deduction->deduction_number }}

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 ?? '-' }}

Edit
@csrf @method('DELETE')
@endsection