spatie / laravel-view-models

View models in Laravel

Home Page:https://spatie.be/open-source

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to use ViewModels with Laravel's Resource Collections?

taliptako opened this issue · comments

    public function resource()
    {
        return PreDefinedTaskResource::collection(PreDefinedTask::paginate(10));
    }

When I call resource like above inside ViewModel, it removes meta data of pagination

You should call resolve if I'm not mistaken:

    public function resource()
    {
        return PreDefinedTaskResource::collection(PreDefinedTask::paginate(10))->resolve();
    }