@if($service->price_list_category && $service->price_list_category != '')
@php
$price_list_categories = explode(",", $service->price_list_category);
$price_list_prices = explode(",", $service->price_list_price);
@endphp
@for($i = 0; $i < count($price_list_categories); $i++)
{{ Form::label('non_insured_price', get_name($price_list_categories[$i], 'id', 'name', 'patient_categories').' Price') }}
{{ Form::hidden('price_list_category_id[]', $price_list_categories[$i]) }}
{{ Form::number('price_list_price[]', $price_list_prices[$i], ['class'=>'form-control price_list_price']) }}
@endfor
@endif
{{ Form::label('description', __('service_items.description')) }}
{{ Form::textArea('description', $service->description, ['class'=>'form-control', 'rows' => 4]) }}