HandleCors.php 255 B

12345678910111213141516
  1. <?php
  2. namespace App\Http\Middleware;
  3. use Fruitcake\Cors\HandleCors as Middleware;
  4. class HandleCors extends Middleware
  5. {
  6. /**
  7. * The paths to enable CORS on.
  8. * Example: ['api/*']
  9. *
  10. * @var array
  11. */
  12. protected $paths = [];
  13. }