{{-- Create Budget --}}

List of Budget

@if ($budget) @php $i = 0; @endphp @foreach ($budget as $r) @endforeach
SR NO BUDGET NAME STATUS YEAR
{{ ++$i }}

View {{-- @if (Auth::user()->hasRoleWisePermission('download_budget')) DOWNLOAD @endif --}} {{-- @if (Auth::user()->hasRoleWisePermission('merge_budget')) @if ( $r->BudgetCivil == 'final_approval' && $r->BudgetStore == 'final_approval' && $r->BudgetAccount == 'final_approval' && $r->BudgetEstablishment == 'final_approval' && $r->BudgetStatus != 'completed') MERGE BUDGET @endif @endif --}} {{-- @if (Auth::user()->hasRoleWisePermission('move_to_regular_budget')) @if ($r->BudgetStatus == 'completed') Make Project @endif @endif --}}
@php $class = $r->NotificationStatus == 'unseen' && $r->ReceiverUserID == session('userID') && $r->ReceiverRoleID == $roles[0] ? 'pulse' : ''; $color = $r->budget_status == 'pending' ? 'badge-warning' : ($r->budget_status == 'work_in_progress' ? 'badge-success' : 'badge-info'); @endphp {{ str_replace('_', ' ', $r->budget_status) }} {{ $r->budget_year }}
@else

No project found

@endif
{{-- ---- create budget ---- --}}