@extends('layouts/microfin_layout') @section('title', 'MIS Yearly Plan Details') @section('content') @include('microfin.AopBudget.misYearlyPlan.entry.style')

Plan Details

{{ $companyInfo->name }}
{{ $companyInfo->address }}
Annual Operation Plan {{ $fiscalyear }} ({{ ucfirst($budgetType) }})
Project Name : {{ $projectName }} Branch Name : {{ $branchName }}
Project Type : {{ $projectTypeName }} Print Date : {{ date("d-m-Y") }}
{!! Form::open(array('url' => '', 'id' => 'budget-form', 'role' => 'form')) !!} @if( $branchId != 1) @endif @foreach($budgets as $key => $item) @php $value[1] = (int) $item['july']; $value[2] = (int) $item['august']; $value[3] = (int) $item['september']; $value[4] = (int) $item['october']; $value[5] = (int) $item['november']; $value[6] = (int) $item['december']; $value[7] = (int) $item['january']; $value[8] = (int) $item['february']; $value[9] = (int) $item['march']; $value[10] = (int) $item['april']; $value[11] = (int) $item['may']; $value[12] = (int) $item['june']; $total = (int) array_sum($value); @endphp @if( $item['hrPosGroupDisplay'] ) @endif @if( $branchId != 1) @endif @for($i = 1; $i <= 12; $i++) @endfor @endforeach @if( $branchId != 1) @endif @for ($i = 1; $i <= 12; $i++) @endfor
Components{{ $prevLastFy }} {{ $lastFy }}{{ $fiscalyear }} {{ $fiscalyear }}
Jul, {{ $partOfyear[0] }} Aug, {{ $partOfyear[0] }} Sep, {{ $partOfyear[0] }} Oct, {{ $partOfyear[0] }} Nov, {{ $partOfyear[0] }} Dec, {{ $partOfyear[0] }} Jan, {{ $partOfyear[1] }} Feb, {{ $partOfyear[1] }} Mar, {{ $partOfyear[1] }} Apr, {{ $partOfyear[1] }} May, {{ $partOfyear[1] }} Jun, {{ $partOfyear[1] }} Total
{{ $item['hrPosGroupDisplay'] }}{{ preg_replace("/[\s_]+/", " ", $item['hrPosition']) }}{{ $item['prevOpening'] == 0 ? '-' : number_format($item['prevOpening']) }} {{ $item['opening'] == 0 ? '-' : number_format($item['opening']) }} {{ $value[$i] == 0 ? '-' : number_format($value[$i]) }} {{ $total == 0 ? '-' : number_format($total) }} {{ $total == 0 ? '-' : number_format($total) }}
Total plt lt t T T
{!! Form::close() !!}
@endsection