Answers for "laravel select option form add please select option"

PHP
0

laravel select option form add please select option

{!! Form::select('shipping_pincode', 
	$deliveryLocations->prepend('Please Select Delivery Location', '0'),
	!empty($selected_location) ? $selected_location : '0',
	array("class" => "form-control"))
!!}
Posted by: Guest on June-16-2020

Browse Popular Code Answers by Language