You can find the laravel source here:
https://github.com/laravel/framework
If you need help finding a specific class/function, you can search the laravel api to find its path:
For Route::get and post, you can find them here around line 140:
https://github.com/laravel/framework/blob/master/src/Illuminate/Routing/Router.php
and follow where it goes :)
get/post/put/delete/etc methods pretty much just register the uri in the router routes property, then the router matches the request uri with one, then matches it your specified controller method / closure.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community