A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

21 строка
337B

  1. <?php
  2. namespace App\Http\Middleware;
  3. use Closure;
  4. class ExampleMiddleware
  5. {
  6. /**
  7. * Handle an incoming request.
  8. *
  9. * @param \Illuminate\Http\Request $request
  10. * @param \Closure $next
  11. * @return mixed
  12. */
  13. public function handle($request, Closure $next)
  14. {
  15. return $next($request);
  16. }
  17. }