2017-12-20 23 views

答えて

1

あなたは)(Laravelヘルパー関数GROUPBYを使用する必要があります。コントローラで 例:ブレードで

$cars = Cars::where('status', 1)->get(); 

$carModels = $cars->groupBy('model'); 

<select> 
    @foreach($carModels as $model => $cars) 

     <optgroup label="{{$model}}"> 
     @foreach($cars as $car) 
      <option value="volvo">$c</option> 
     @endforeach 
     </optgroup> 

    @endforeach 
</select> 
+1