| Conditions | 3 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | public function handle($request, Closure $next): mixed |
||
| 18 | { |
||
| 19 | $response = $next($request); |
||
| 20 | |||
| 21 | if ($request->ajax() && ($content = $response->getOriginalContent()) instanceof View) { |
||
| 22 | return $response->setContent($content->renderSections()['content']); |
||
| 23 | } |
||
| 24 | |||
| 25 | return $response; |
||
| 26 | } |
||
| 28 |