Laravel-根据所选数据用其他选择框填充选择框

时间:2018-10-03 06:07:35

标签: html laravel-5

我的数据库

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();
    }

这就像类别和子类别,但我不能遵循

0 个答案:

没有答案