Hey
I want to do internal requests and I use Request::create() for this. According to the API the Request::create() looks like that : public Request create( string $uri, string $method = 'GET', array $parameters = array(), array $cookies = array(), array $files = array(), array $server = array(), string $content = null )
so I try to use it and everything is working , I get response. The only thing is not working that the params I try to transfer. Here is my code : http://laravel.io/bin/DGKx
Now I try to access "test_param" from the method that handle this route with Input::get('test_param') and I get nothing... The Request::create() not pass my parameters for the request....
What I need to do ?
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community