@extends('layouts.app') @section('title', 'Detail Pengeluaran - Hotel Management System') @section('page-title', 'Detail Pengeluaran') @section('page-actions')
@endsection @section('content')| Judul: | {{ $expense->title }} |
| Kategori: | {{ $expense->category }} |
| Jumlah: | Rp {{ number_format($expense->amount, 0, ',', '.') }} |
| Tanggal: | {{ $expense->expense_date->format('d/m/Y') }} |
| No. Kwitansi: | {{ $expense->receipt_number ?: '-' }} |
| Input Oleh: | {{ $expense->user->name }} |
| Dibuat: | {{ $expense->created_at->format('d/m/Y H:i') }} |
| Diperbarui: | {{ $expense->updated_at->format('d/m/Y H:i') }} |
{{ $expense->description }}