@extends('layouts/acc_layout') @section('title', 'MIS Yearly Plans') @section('content') @include('accounting.misYearlyPlan.entry.style')

MIS Yearly Plans

{{ csrf_field() }} @php $pageNumber = (!empty($_GET['page'])) ? (int)$_GET['page'] : 1; $no = ($pageNumber - 1) * 20; @endphp @if (count($budgets) == 0) @else @foreach($budgets as $key => $budget) @php $budget = (array) $budget; @endphp @endforeach @endif
SL# Project Project Type Branch Fiscal Year Budget Type Status Action
No Budget Available In This Search Range
{{ $loop->iteration }} {{ $projects[$budget['projectIdFk']]}} {{ $projectTypes[$budget['projectTypeIdFk']]}} {{ $branches[$budget['branchIdFk']] }} {{ $fiscalYears[$budget['fiscalYearIdFk']] }} {{ ucfirst($budget['budgetType']) }} @if ($budget['softDel'] == 1) @else @endif {{-- // EDIT --}} {{-- @if( Auth::user()->id == 1 ) --}} @if ( $fiscalYears[$budget['fiscalYearIdFk']] == $editFiscalYear) @endif {{-- @endif --}} {{-- Delete budget --}} @if( Auth::user()->branchId == 1 ) @endif
{{-- modal div --}} {{-- budget approve modal --}}
@include('accounting.misYearlyPlan.entry.script') @endsection