@extends(\Auth::user()->role != 10 ? 'layout' : 'layoutfrontdesk') @section('title', 'COA Budgets') @section('css') @endsection @section('content')
@if (!$budgets->isEmpty()) @foreach ($budgets as $key => $budget) @for ($i = 0; $i < 12; $i++) @if (@$budget[numToMonth($i)]) @else @endif @endfor @endforeach @endif
Description JAN FEB MAR APR MAY JUN JUL AUG SEP OCT NOV DEC
{{ $budget['description'] }}
Rp {{ ribuanWithComma(@$budget[numToMonth($i)]['budget'] ?? 0) }}
Rp {{ ribuanWithComma(0) }}
@endsection @section('js') @endsection