@extends('master.app') @section('title', 'Tax Details') @section('body')

Tax Details

Single record view
Title
{{ $tax->title }}
Amount
{{ number_format($tax->amount ?? 0, 2) }}
Date
{{ $tax->date ?? '—' }}
Status
{{ $tax->status == 1 ? 'Active' : 'Inactive' }}
Details
{{ $tax->details ?? 'N/A' }}
@endsection