@extends('admin.layouts.app')
@section('title', 'Expense Details')
@section('page_title', 'Expense Details')
@section('content')
| Expense No |
{{ $expense->expense_no }} |
| Date |
{{ date('d-m-Y', strtotime($expense->date)) }} |
| Category |
{{ $expense->category ?? '-' }} |
| Amount |
{{ number_format($expense->amount, 2) }} |
| Description |
{{ $expense->description ?? '-' }} |
@endsection