Axel
Axel
These small modifications allow the display of multiple env logs with the same date. For example: 'suffix' => '-{webapp,root}' it will show: laravel-2022-04-18-webapp.log, laravel-2022-04-18-root.log Another example: 'suffix' => '-{cli,pm-fcgi}' it...
Is there any way to apply the middlware Auth for "original" and "download" routes/template? I tried to create a route for media/original/{filename} but it's always called InterventionImageCacheController@getResponse instead of my...
Users often connect from different devices (desktop, mobile, tablet, etc.) and from different locations (home, work, etc.). If we send notifications to users more than a minute old, we will...
AutoPagingIterator does not work with an invoice that has more than 10 line items that use tax rates
### Describe the bug https://github.com/stripe/stripe-php/issues/1400#issuecomment-1344272956 ### To Reproduce ``` $stripe = new \Stripe\StripeClient('stripe-secret'); $invoice = $stripe->invoices->retrieve('in_xxx', [ 'expand' => ['lines.data.tax_amounts.tax_rate'], ]); foreach ($invoice->lines->autoPagingIterator() as $line) { foreach ($line->tax_amounts as $tax_amount)...