So I am trying to create a search panel, about 9 search inputs, everything works well.
When I added 2 more inputs or select box, my Auth::user() becomes null, it logs me out, so the credentials are useless.
It seems laravel only accepts 10 GET parameters, it's weird.
Could any figure it out? I'm trying to tail the laravel.log seems not logging the error why it logs me out, I tried it many times but it's kinda weird.
lists? search[application.reference_number]= &search[application.status]= &search[customer.first_name]= &search[customer.last_name]= &search[customer.email]= &search[customer.tin]= &search[customer.job_position]= &search[company.name]= &sort=application.reference_number &order=desc &search[created_at_from]= &search[created_at_to]=
so when adding created_at_from and created_at_to it automatically destroy my session.
I guess laravel might be designed to accept only 10 GET parameters.