Laravel Sélectionnez le formulaire d'option Ajouter s'il vous plaît sélectionnez l'option

{!! Form::select('shipping_pincode', 
	$deliveryLocations->prepend('Please Select Delivery Location', '0'),
	!empty($selected_location) ? $selected_location : '0',
	array("class" => "form-control"))
!!}
Lokesh003Coding