Lumen - pagination links() method not working












0















I am trying to create a paginated resultset in Lumen. I am not using a database collection, instead it is an array collection.



I have managed to get the results to display, however I am having a problem getting the pagination links() method to work. Here is what I have:



PHP:



<?php

namespace AppHttpControllers;

use IlluminateHttpRequest;
use IlluminatePaginationLengthAwarePaginator;

class AppController extends Controller
{
public function index(Request $request)
{
$items = [
'item1',
'item2',
'item3',
'item4',
];

$collection = collect($items);

$currentPage = LengthAwarePaginator::resolveCurrentPage();
$perPage = 2;
$offset = ($currentPage * $perPage) - $perPage;

$currentPageResults = $collection->slice($offset, $perPage)->all();

$paginatedItems = new LengthAwarePaginator($currentPageResults, count($collection), $perPage);

$paginatedItems->setPath($request->url());

return view('index', [
'results' => $paginatedItems,
]);
}
}


View:



<ul>
@foreach ($results as $result)
<li>{{ $result }}</li>
@endforeach
</ul>

<div>
{{ $results->links() }}
</div>


The error I am getting is:




call_user_func() expects parameter 1 to be a valid callback, no array
or string given




If I remove $results->links() I don't get the error.



When I dd($paginationItems) I do get back a valid LengthAwarePaginator object:



enter image description here










share|improve this question





























    0















    I am trying to create a paginated resultset in Lumen. I am not using a database collection, instead it is an array collection.



    I have managed to get the results to display, however I am having a problem getting the pagination links() method to work. Here is what I have:



    PHP:



    <?php

    namespace AppHttpControllers;

    use IlluminateHttpRequest;
    use IlluminatePaginationLengthAwarePaginator;

    class AppController extends Controller
    {
    public function index(Request $request)
    {
    $items = [
    'item1',
    'item2',
    'item3',
    'item4',
    ];

    $collection = collect($items);

    $currentPage = LengthAwarePaginator::resolveCurrentPage();
    $perPage = 2;
    $offset = ($currentPage * $perPage) - $perPage;

    $currentPageResults = $collection->slice($offset, $perPage)->all();

    $paginatedItems = new LengthAwarePaginator($currentPageResults, count($collection), $perPage);

    $paginatedItems->setPath($request->url());

    return view('index', [
    'results' => $paginatedItems,
    ]);
    }
    }


    View:



    <ul>
    @foreach ($results as $result)
    <li>{{ $result }}</li>
    @endforeach
    </ul>

    <div>
    {{ $results->links() }}
    </div>


    The error I am getting is:




    call_user_func() expects parameter 1 to be a valid callback, no array
    or string given




    If I remove $results->links() I don't get the error.



    When I dd($paginationItems) I do get back a valid LengthAwarePaginator object:



    enter image description here










    share|improve this question



























      0












      0








      0








      I am trying to create a paginated resultset in Lumen. I am not using a database collection, instead it is an array collection.



      I have managed to get the results to display, however I am having a problem getting the pagination links() method to work. Here is what I have:



      PHP:



      <?php

      namespace AppHttpControllers;

      use IlluminateHttpRequest;
      use IlluminatePaginationLengthAwarePaginator;

      class AppController extends Controller
      {
      public function index(Request $request)
      {
      $items = [
      'item1',
      'item2',
      'item3',
      'item4',
      ];

      $collection = collect($items);

      $currentPage = LengthAwarePaginator::resolveCurrentPage();
      $perPage = 2;
      $offset = ($currentPage * $perPage) - $perPage;

      $currentPageResults = $collection->slice($offset, $perPage)->all();

      $paginatedItems = new LengthAwarePaginator($currentPageResults, count($collection), $perPage);

      $paginatedItems->setPath($request->url());

      return view('index', [
      'results' => $paginatedItems,
      ]);
      }
      }


      View:



      <ul>
      @foreach ($results as $result)
      <li>{{ $result }}</li>
      @endforeach
      </ul>

      <div>
      {{ $results->links() }}
      </div>


      The error I am getting is:




      call_user_func() expects parameter 1 to be a valid callback, no array
      or string given




      If I remove $results->links() I don't get the error.



      When I dd($paginationItems) I do get back a valid LengthAwarePaginator object:



      enter image description here










      share|improve this question
















      I am trying to create a paginated resultset in Lumen. I am not using a database collection, instead it is an array collection.



      I have managed to get the results to display, however I am having a problem getting the pagination links() method to work. Here is what I have:



      PHP:



      <?php

      namespace AppHttpControllers;

      use IlluminateHttpRequest;
      use IlluminatePaginationLengthAwarePaginator;

      class AppController extends Controller
      {
      public function index(Request $request)
      {
      $items = [
      'item1',
      'item2',
      'item3',
      'item4',
      ];

      $collection = collect($items);

      $currentPage = LengthAwarePaginator::resolveCurrentPage();
      $perPage = 2;
      $offset = ($currentPage * $perPage) - $perPage;

      $currentPageResults = $collection->slice($offset, $perPage)->all();

      $paginatedItems = new LengthAwarePaginator($currentPageResults, count($collection), $perPage);

      $paginatedItems->setPath($request->url());

      return view('index', [
      'results' => $paginatedItems,
      ]);
      }
      }


      View:



      <ul>
      @foreach ($results as $result)
      <li>{{ $result }}</li>
      @endforeach
      </ul>

      <div>
      {{ $results->links() }}
      </div>


      The error I am getting is:




      call_user_func() expects parameter 1 to be a valid callback, no array
      or string given




      If I remove $results->links() I don't get the error.



      When I dd($paginationItems) I do get back a valid LengthAwarePaginator object:



      enter image description here







      php laravel lumen






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 12 '18 at 17:19







      GSTAR

















      asked Nov 12 '18 at 17:05









      GSTARGSTAR

      1,573115199




      1,573115199
























          1 Answer
          1






          active

          oldest

          votes


















          0














          I found the answer:



          Within bootstrap/app.php there is a line of code commented out by default:



          // $app->withEloquent();



          This needs to be uncommented for the pagination links() method to work.






          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53266895%2flumen-pagination-links-method-not-working%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            I found the answer:



            Within bootstrap/app.php there is a line of code commented out by default:



            // $app->withEloquent();



            This needs to be uncommented for the pagination links() method to work.






            share|improve this answer




























              0














              I found the answer:



              Within bootstrap/app.php there is a line of code commented out by default:



              // $app->withEloquent();



              This needs to be uncommented for the pagination links() method to work.






              share|improve this answer


























                0












                0








                0







                I found the answer:



                Within bootstrap/app.php there is a line of code commented out by default:



                // $app->withEloquent();



                This needs to be uncommented for the pagination links() method to work.






                share|improve this answer













                I found the answer:



                Within bootstrap/app.php there is a line of code commented out by default:



                // $app->withEloquent();



                This needs to be uncommented for the pagination links() method to work.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 12 '18 at 17:32









                GSTARGSTAR

                1,573115199




                1,573115199






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53266895%2flumen-pagination-links-method-not-working%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Full-time equivalent

                    Bicuculline

                    さくらももこ