You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
795B

  1. <?php
  2. use App\Util\RouteHelper;
  3. /*
  4. |--------------------------------------------------------------------------
  5. | API Routes
  6. |--------------------------------------------------------------------------
  7. |
  8. | Here is where you can register API routes for your application. These
  9. | routes are loaded by the RouteServiceProvider and all of them will
  10. | be assigned to the "api" middleware group. Make something great!
  11. |
  12. */
  13. RouteHelper::post('/login', App\Http\Controllers\Web\Auth\LoginController::class);
  14. RouteHelper::get('/logout', App\Http\Controllers\Web\Auth\LogoutController::class);
  15. RouteHelper::get('/me', App\Http\Controllers\Web\Auth\MeController::class);
  16. RouteHelper::get('/season-ticket-contracts', App\Http\Controllers\Web\SeasonTicketContract\SeasonTicketContractsController::class);