Support the ongoing development of Laravel.io →
posted 9 years ago
Eloquent
Last updated 1 year ago.
0

I rewrote the code a bit, so that it conforms to my existing code, and so that it's also a tiny bit more readable.

However my problem has not been solved yet, this should be straightforward, but for some reason I don't know how to solve it. The issue is still that the page is NOT paginated (and the links are not showing up).

public function show($name) {

		$listings = Listing::where('category_id', '=', $name)->paginate(10);
		$category = Category::wherename($name)->firstOrFail();


		return View::make('categories.categories-view', compact('listings', 'category'));
	}

My view:

<section id="pagination" class="pagination">
  {{ $listings->links() }}
</section>

Any help is appreciated :)

Last updated 1 year ago.
0

Bump on the road :)

Last updated 1 year ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Reached reached Joined 27 Feb 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.