@extends('layouts/microfin_layout') @section('title', '| Interest Provision Hold') @section('content')
|
{!! Form::checkbox('all_branch', 'all_branch', false, ['class' => 'control-label', 'id' => 'all_branch']) !!}
|
|
@foreach($branchList as $i => $branch)
{!! Form::checkbox('branch_id[]', $i, count($branchList) > 1 ? false : true, ['class' => 'control-label branch', 'id' => 'branch_'.$i]) !!}
@endforeach
|