Advertisement
sumakaki

web.php

Feb 14th, 2021 (edited)
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. <?php
  2.  
  3. use app\Http\Controllers\HomeController;
  4.  
  5. $app->get('/', HomeController::class . ':show');
  6.  
  7.  
  8. $app->get('/books/{id}', function ($request, $response, array $args) {
  9.     $response->getBody()->write('books yes  ' . $args['id']);
  10.     return $response;
  11. });
  12.  
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement