Last active
January 13, 2019 16:40
-
-
Save winni4eva/f09dc6d813c0ce45d7bdbf82ecbd8400 to your computer and use it in GitHub Desktop.
Web Request Handling In Laravel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$router->get('/users/{id}', function($id){ | |
dd($id); | |
}); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment