0
我的分頁函數{{$ taches-> links()}}在下面的路徑中給出了ErrorException(下面):View:C:\ wamp64 \ www \ Application \ resources \ views \ groupe \ tache.blade.php我的方法鏈接()不起作用?
MacroException.php中的ErrorException第74行:方法鏈接不存在。
任何幫助,這真的很感激。
在控制器:
public function index($id){
$projet = Projet::find($id);
$taches = $projet->tache()->paginate(1);
return view('groupe.tache',['projet' => $projet, 'taches' => $taches]);
}
鑑於
<div class="pagination">
<ul>
<li>{{ $projet->tache->links() }} </li>
</ul>
</div>
PROJET -tache關係模型
public function projet()
{
return $this->belongsTo('App\Projet','projet_id');
}
public function tache() {
return $this->hasMany('App\Tache','projet_id');
}
可以顯示模型中項目關係的代碼嗎? – TheFallen
可以請你再次檢查我的問題,我更新 – Mira
該功能是完美的工作..其顯示所有的視圖..但當我使用分頁{{$ taches-> links()}}給我錯誤 – Mira