Support the ongoing development of Laravel.io →
Database Eloquent Views
Last updated 1 year ago.
0

I did got it working turning things around:

public function allPaginate($perPage)
{
    $result = $this->model->orderBy('created_at', 'desc')->paginate($perPage);

    // adding slug to my collection for every item
    $result->each(function ($item) {
        if(! isset($item->slug))
        {
            $slug = Str::slug($item->title);
            $item->slug = $slug;
        }
    });

    return $result;
}
Last updated 8 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

bflydesign bflydesign Joined 21 Nov 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.