@if($opKey == 'add') | {{ $item }} | @endif
{{ $particularsName[$opKey] }} |
@if($opKey == 'add') | @endif
@php
if($opKey == 'add') {
$prevLastFyClosing = 0;
$lastFyClosing = isset($openingData[$key]) ? $openingData[$key]['lastFyAdd'] : 0;
}
if($opKey == 'cancellation') {
$prevLastFyClosing = 0;
$lastFyClosing = isset($openingData[$key]) ? $openingData[$key]['lastFyCancellation'] : 0;
}
if($opKey == 'net') {
$prevLastFyClosing = 0;
$lastFyClosing = isset($openingData[$key]) ? $openingData[$key]['lastFyNet'] : 0;
}
if($opKey == 'closing') {
$prevLastFyClosing = isset($openingData[$key]) ? $openingData[$key]['prevLastFyClosing'] : 0;
$lastFyClosing = isset($openingData[$key]) ? $openingData[$key]['lastFyClosing'] : 0;
}
@endphp
@if($opKey == 'closing')
|
@else
@endif
|
@for ($i = 1; $i <= 12; $i++)
@if (($key == 3 || $key == 6) && $opKey == 'add' )
$i) readonly @endif onclick='checkelement(this)'
value="0"
id="{{ $opKey }}_{{ $key }}_{{ $i }}"
name="{{ $opKey }}_{{ $key }}_{{ $i }}"
class="form-control {{ $textStyle }}"
{{ ($opKey == 'add') ? 'readonly' : '' }}
/>
|
@else
$i) readonly @endif onclick='checkelement(this)'
value="0"
id="{{ $opKey }}_{{ $key }}_{{ $i }}"
name="{{ $opKey }}_{{ $key }}_{{ $i }}"
class="form-control {{ $textStyle }}"
{{ ($opKey == 'add' || $opKey == 'cancellation') ? '' : 'readonly' }}
/>
|
@endif
@endfor
|
|
@endforeach
@endforeach
{{-- @if($typeId != 'samity') --}}
@foreach($particularsName as $opKey => $opName)