$request not working on laravel get method $request not working on laravel get method laravel laravel

$request not working on laravel get method


What you are missing is your server is not passing query parameter in any form of request. If you are using nginx try

location / {                try_files $uri $uri/ /index.php?$args;                           }


Try this code:-

use Illuminate\Http\Request; // add this in top controllerpublic function search(Request $request) {    $data = $request->all();    echo "<pre>"; print_r($data);}   ------OR--------use Request; // add this in top controllerpublic function search() {    $data = Request::all();    echo "<pre>"; print_r($data);}

Hope it helps