dimanche 24 juillet 2016

Pagination in Laravel doesn't work

My post Controller : class QuestionsController extends Controller {

/**
 * Display a listing of the resource.
 *
 * @return Response
 */
public function index()
{


       $questions = \App\Question::latest()->paginate(6);
               $questions = \App\Question::unsolved();
               $bars     = \App\Question::unsolvedbar();
               $links = str_replace('/?', '?', $questions->render());
       return view('questions.index',compact('questions','bars','links'));
}

My Pagination Links in my View: {!! $questions->links(); !!}



from Newest questions tagged laravel-5 - Stack Overflow http://ift.tt/2a6gijN
via IFTTT

1 commentaire: