Malik Awan
Malik Awan

Reputation: 119

In Dropdown Laravel Blade show option in optgroup based upon a field in the table

I have a table which screenshot is attached below database image

I want to show all the Account Type and but it should be shown in option group

select image

How can I achieve this???

dropdown image

Upvotes: 5

Views: 2416

Answers (1)

Etibar
Etibar

Reputation: 578

The Laravel helper function groupBy() will help you solve this problem. Data grouping example:

$cars = Car::where('status', 1)->get();
    
$carModels = $cars->groupBy('model');

Blade example:

<select name="car_id">
    @foreach($carModels as $model => $cars)
    
      <optgroup label="{{ $model }}">
        @foreach($cars as $car)
          <option value="{{ $car->id }}">{{ $car->name }}</option>
        @endforeach
      </optgroup>
    
    @endforeach
</select>

Upvotes: 4

Related Questions