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.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community