ItSolutionStuff.com

Laravel - Set Selected Option in Dropdown Menu Example

By Hardik Savani • April 16, 2024
PHP Laravel

I will explain how to populate select box with selected option dynamically in laravel. You can do it dropdown from database with specific value selected in your html blade file, even if you didn't use Form Class.

we almost use Form Composer package for generate html form. Form facade will help to create text box, radio button, select box etc. you can easily create dynamic select box with Form class. you can make it simply selected value from argument without if condition.

I will give two way to make selected option on drop down menu in laravel. So let's see both example and you can use in your laravel 5, laravel 6, laravel 7, laravel 8, laravel 9, laravel 10 and laravel 11 project.

Controller Code:

/**

* Show PDF

*

* @return \Illuminate\Http\Response

*/

public function consentFormListShowPDF(Request $request)

{

$products = Product::pluck('name', 'id');

$selectedID = 2;

return view('stock.edit', compact('id', 'products'));

}

Example 1 Using Form:

<div class="form-group">

{!! Form::Label('product', 'Product:') !!}

{!! Form::select('product_id', $products, $selectedID, ['class' => 'form-control']) !!}

</div>

Example 2 Without Using Form:

<select class="form-control" name="product_id">

<option>Select Product</option>

@foreach ($products as $key => $value)

<option value="{{ $key }}" {{ ( $key == $selectedID) ? 'selected' : '' }}>

{{ $value }}

</option>

@endforeach

</select>

I hope it can help you....

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Run All Seeders in Laravel?

Read Now →

Laravel US State Seeder Example

Read Now →

Laravel Seeder from CSV File Example

Read Now →

How to Run Specific Seeder in Laravel?

Read Now →

How to Find Nearest Location using Latitude and Longitude in Laravel?

Read Now →

Laravel Redirect Back with Input and Error Messages Example

Read Now →

How to use DB Transactions in Laravel?

Read Now →

Example of unionAll in Query Builder Laravel

Read Now →

How to Store Data in Cache in Laravel?

Read Now →

How to Add Text on Image in Laravel?

Read Now →

How to Get Query Log in Laravel Eloquent?

Read Now →

How to Set URL without Http of Other Site in Laravel?

Read Now →