@include('admin.header')

Costs Management

Add New Cost
@if (session('success'))
{{ session('success') }}
@endif
@forelse ($costs as $cost) @empty @endforelse
ID Name Amount Category Created At Actions
{{ $cost->id }} {{ $cost->name }} ${{ number_format($cost->amount, 2) }} {{ $cost->otherCost->name }} {{ $cost->created_at->format('d M Y') }}
View Edit
@csrf @method('DELETE')
No costs found.
{{ $costs->links() }}
@include('admin.footer')