Support the ongoing development of Laravel.io →
Database Views Blade

Hello guys , I installed my laravel 5.1 application on a shared server for it was necessary to copy all of the public folder files to the root of the app , updated the index.php file folder also publishes as: Require __DIR __ ' / .. / my_app /bootstrap/autoload.php ' ; and , $app = require_once __DIR __ ' / .. / my_app / bootstrap / app.php ';, everything was fine just paging when I try to go for example to Page 2 get an error 404. Any help is welcome .

Below my search method:

public function search(Request $request)
    {
        $query = Request::input('busca');
        $cargos = Cargo::where('nome', 'ILIKE', '%' . $query . '%')->paginate(1);
        return view('cargo/lista', compact('cargos', 'query'));
    }

This is my view.

My view

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

geekcom geekcom Joined 12 Nov 2015

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.

© 2025 Laravel.io - All rights reserved.