如何从laravel中的数据库填充Tagit输入?

时间:2017-05-01 11:15:36

标签: laravel laravel-5 tag-it

我在项目中使用bootstrap Tagit输入。但我被困在如何从数据库记录填充它。我尝试了以下代码,但它无法正常工作,请帮助我。提前致谢

控制器

public function profile() {

    $locations=User::with('visitedList','wishList')->where('id',Auth::user()->id)->get();

    return view('pages/edit-profile' , compact('locations'));
}

在视图上打印

<label class="col-lg-3 control-label">Already visit:</label>
          <div class="col-lg-8">
            <input type="text" value="
            @foreach ($locations[0]->visitedList as $loc)
                    {{$loc->locations}}

            @endforeach

            " data-role="tagsinput" id="tags" name="wish-tags" class="form-control">
          </div>

0 个答案:

没有答案