5

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

Etibar
  • 578
  • 6
  • 22
Malik Awan
  • 115
  • 15

1 Answers1

4

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>
Etibar
  • 578
  • 6
  • 22