@extends('layouts.department-details-layout') @section('content')

@forelse($departmentBudgets as $budget) @empty @endforelse
This table shows the budget of this particular department
{{ $budget ? number_format($budget->amount, 2) : (0.00) }}
Year
{{ $budget->year }}
No budget is added yet.
@endsection @section('more-scripts') @endsection