You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: use capture to populate global request with json array (#883)
Request::capture is using createFromBase that checks is request is json and replace request with json array
```
if ($newRequest->isJson()) {
$newRequest->request = $newRequest->json();
}
```
and later when in controller you can use request->get('some-json-key') to get value as its a default laravel behavior [check index.php:53]
0 commit comments