Multiple Bills

{{ Form::open( ['method'=>'POST', 'id'=>'multiple_bill_generate']) }} {{ Form::hidden('hidden_bill_month', $original_bill_month, ['id'=>'hidden_bill_month']) }}
{{Form::text( 'bill_no', (@$bill_no), [ "class" => "form-control"]) }} This field is required.
{{Form::text( 'bill_month', (@$bill_month), [ "class" => "form-control", 'disabled']) }} This field is required.
{{Form::text( 'service_charge_percent', '', [ "class" => "form-control", "placeholder" => "" ]) }}
{{Form::text( 'other_charge', '', [ "class" => "form-control", "placeholder" => "" ]) }}
{{Form::text( 'created_at', $today, [ "class" => "form-control date_input", "id" => 'date' ]) }}
* Please select at least one bill template.
@foreach($bill_templates as $key => $bill_template) @if(in_array($bill_template->template_key, $selected_bill_template_array) && $set_templated_by_branch)
{{ Form::radio( "bill_template", $bill_template->template_key, ($selected_bill_template_array[0] == $bill_template->template_key) ? true : false, [ 'id' => "$bill_template->template_key", 'class'=>'minimal', ]) }}
@elseif(!$set_templated_by_branch)
{{ Form::radio( "bill_template", $bill_template->template_key, ($key == $bill_template->template_key) ? true : false, [ 'id' => "$bill_template->template_key", 'class'=>'minimal', ]) }}
@endif @endforeach
* Please select at least one client from below list.
{{ Form::text('search','',['class'=>'form-control', 'placeholder'=>'Search', 'onkeyup'=>'searchToClient()']) }}
@foreach($clients as $client) @endforeach
{{ Form::checkbox('check-all-client','',false,['class'=>'minimal']) }} Name Amount
No records found
{{Form::checkbox('check-clients',$client->client_id,'',['class'=>'check-clients minimal', 'data-from' => $client->client_id]) }} {{$client->name}} {{number_format($client->total_booking_amount, 2)}}
In the bill, Fule charge will be consider based on client configuration.
{{ Form::close() }}