我的数据库
make_models
models_id make_id
1 1
4 1
10 1
11 2
17 2
品牌
1
2
型号
1
4
10
11
17
控制器
$makes=make::all();
$models=models::all();
return view('admin.vehicles.create',compact('makes','models'));
create.blade.php
为品牌
<select class="form-control">
@foreach($makes as $make)
<option value="{{ $make->id}}">{{ $make->name}}</option>
@endforeach
</select>
型号
public function makes()
{
return $this->belongsToMany('App\Model\Make','make_models')->withTimestamps();
}
这就像类别和子类别,但我不能遵循