{{-- resources/views/accounting/budgets/show.blade.php --}} @extends('admin.admin_dashboard') @section('admin')

Period: {{ \Carbon\Carbon::parse($budget->start_date)->format('Y-m-d') }} — {{ \Carbon\Carbon::parse($budget->end_date)->format('Y-m-d') }}

@if($budget->notes)

Notes: {{ $budget->notes }}

@endif
Line Items
@foreach($budget->lines as $line) @endforeach
AccountPeriodBudgeted
{{ $line->account->full_name }} {{ \Carbon\Carbon::parse($line->period)->format('Y-m-d') }} {{ number_format($line->amount,2) }}
@endsection