@extends('app') @section('content')

Add Service

{{----}} {{-- --}} {{--Add Diagnostic Test--}} {{----}} @can('diagnostic-test-view')   View Diagnostic Test @endcan @can('sale-service-create')   Add Sale @endcan

@can('diagnostic-test-create')
{{csrf_field()}}
{!! Form::select('service_category_id', $service_categories ,null, ['class'=> 'form-control','placeholder'=> 'Please Select Category', 'id'=>'sc']) !!}
{!! Form::select('service_sub_category_id', [] ,null, ['class'=> 'form-control','placeholder'=> 'Please Select Sub Category', 'id'=>'ssc']) !!}
{{-- --}}
{!! Form::select('diagnostic_test_result_type[]', [ '0'=>'Accessories', '1'=>'Positive/Negative', '2'=>'Present/Absent', '3'=>'Unit Base', '4'=>'Radiology', ] ,null, ['class'=> 'form-control diagnostic-test-result-type','placeholder'=> 'Please Select Result Type', 'required' => 'required']) !!}

@endcan
@endsection @section('script')