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

Edit Plan

{{ $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
Particulars{{ $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']) }}{{ number_format( $item['prevOpening'] ) }} {{ number_format( $item['opening'] ) }} $i) readonly @endif onclick='checkelement(this)' id="staff_{{ $item['hrPosition'] }}_{{ $i }}" name="staff_{{ $item['hrPosition'] }}_{{ $i }}" value="{{ $value[$i] }}" min="0" type="number" class="form-control text-center" {{ $isEdit ? '' : 'readonly' }} />
Total plt lt t T T
{!! Form::submit('Save', ['id' => 'budgetSubmit', 'class' => 'btn btn-primary btn-md', 'style'=>'font-size:12px']); !!}
{!! Form::close() !!}
@endsection