@extends('layouts/acc_layout') @section('title', '| MIS Yearly Budget Details') @section('content') {{-- STYLE --}}
| Particulars | Opening {{ date_format( date_create($branchMonthEndDate),"d/m/Y") }} |
{{ ucfirst($budgetType) }} | Total | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 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] }} | ||||
| {{ $productCategoryname }} | @endif @else @if($loanProductCategories[$item['loanProductCategoryIdFk']]){{ $productCategoryname }} | @endif @endif@if($budgetType == 'samity') @if($item['operation'] == 'Add') Add @elseif($item['operation'] == 'Cancellation') Cancellation @elseif($item['operation'] == 'Closing') Closing Samity @endif @elseif($budgetType == 'member') @if($item['operation'] == 'Add') Admission @elseif($item['operation'] == 'Cancellation') Cancellation @elseif($item['operation'] == 'Closing') Closing Member @endif @elseif($budgetType == 'borrower') @if($item['operation'] == 'Add') Add Loanee @elseif($item['operation'] == 'Cancellation') Fully Paid @elseif($item['operation'] == 'Closing') Closing Borrower @endif @elseif($budgetType == 'employee') @if($item['operation'] == 'Add') Add Employee @elseif($item['operation'] == 'Cancellation') Cancellation @elseif($item['operation'] == 'Closing') Closing Employee @endif @elseif($budgetType == 'loan_outstanding') @if($item['operation'] == 'Add') Disbursement @elseif($item['operation'] == 'Cancellation') Recovery @elseif($item['operation'] == 'Closing') Outstanding @endif @elseif($budgetType == 'member_savings') @if($item['operation'] == 'Add') Collection @elseif($item['operation'] == 'Cancellation') Refund @elseif($item['operation'] == 'Closing') Closing Balance @endif @endif | @if($item['operation'] == 'Closing') @if($isEdit) @else @if($item['opening'] > 0) {{ $item['opening'] }} @else - @endif @endif @endif | @for ($i = 1; $i <= 12; $i++)@if($isEdit) @if($item['operation'] == 'Closing') @else @endif @else @if($value[$i] > 0) {{ $value[$i] }} @else - @endif @endif | @endfor@if($isEdit) @else @if($item['total'] > 0) {{ $item['total'] }} @else - @endif @endif | ||||||||||
| Total | @if($budgetType == 'samity') Add @elseif($budgetType == 'member') Admission @elseif($budgetType == 'borrower') Add Loanee @elseif($budgetType == 'employee') Add Employee @elseif($budgetType == 'loan_outstanding') Disbursement @elseif($budgetType == 'member_savings') Collection @endif | {{ $totalOpening }} | @for ($i = 1; $i <= 12; $i++){{ $totalAdd[$i] }} | @endfor{{ $gTotalAdd }} | |||||||||||
| @if($budgetType == 'samity') Cancellation @elseif($budgetType == 'member') Cancellation @elseif($budgetType == 'borrower') Fully Paid @elseif($budgetType == 'employee') Cancellation @elseif($budgetType == 'loan_outstanding') Recovery @elseif($budgetType == 'member_savings') Refund @endif | @for ($i = 1; $i <= 12; $i++){{ $totalCancellation[$i] }} | @endfor{{ $gTotalCancellation }} | |||||||||||||
| @if($budgetType == 'samity') Closing Samity @elseif($budgetType == 'member') Closing Member @elseif($budgetType == 'borrower') Closing Borrower @elseif($budgetType == 'employee') Closing Employee @elseif($budgetType == 'loan_outstanding') Outstanding @elseif($budgetType == 'member_savings') Closing Balance @endif | @for ($i = 1; $i <= 12; $i++){{ $totalClosing[$i] }} | @endfor{{ $gTotalClosing }} | {!! Form::submit('Save', ['id' => 'budgetSubmit', 'class' => 'btn btn-primary btn-md', 'style'=>'font-size:12px']); !!} | @endif||||||||||||