My pagination function: gives the ErrorException (below) in the following path: View: C:\wamp64\www\Application\resources\views\groupe\tache.blade.php
ErrorException in Macroable.php line 74: Method links does not exist.
Any help on this really appreciated.
In controller:
public function index($id){
$projet = Projet::find($id);
$taches = $projet->tache()->paginate(1);
return view('groupe.tache',['projet' => $projet, 'taches' => $taches]);
}
in view
<div class="pagination">
<ul>
<li> </li>
</ul>
</div>
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire