rate limit header missing when throw exception
Open
- Dominant language
- PHP
- Stars
- 9.4k
- Forks
- 1.3k
- PR merge metrics
- No merged PRs in 30d
Description
my route is like this
```
$api = app('Dingo\Api\Routing\Router');
$api->version('v1', [
'namespace' => 'App\Http\Controllers\Api',
'middleware' => 'api.throttle',
'limit' => 2,
'expires' => 1,
], function($api) {
$api->get('rate', function() {
abort(403,'test');
});
});
```
first request has has no X-RateLimit headers

Contributor guide
Assessment
This issue has not been assessed yet.