@extends('layouts.main') @section('title') Base Rate @endsection @section('content')
@csrf @method('PUT')
@php $baseRateCount = count($baseRates); @endphp @if (old('month') || old('year') || old('base_rate') || old('average_base_rate') || old('spread_rate')) @foreach (old('month') as $key => $old) @include('baseRate.addRow', ['index' => $key]) @endforeach @elseif (count($baseRates) > 0) @foreach ($baseRates as $key => $value) @include('baseRate.addRow', ['index' => $key]) @endforeach @else @include('baseRate.addRow', ['index' => 0]) @endif
Month Year Base Rate (%) Average Base Rate (%) Spread Rate (%) Remove
 Cancel
@endsection @section('scripts') @endsection