Laravel >= 5.1 :
call($method, $uri, $parameters = [], $cookies = [], $files = [], $server = [], $content = null)
An additional array is required before the array of headers:
this->call('POST', '/my/route', ['params' => 'array'], [], [], ['HTTP_X-Custom' => 'header']);
source
share