Part 1 - Creating Our First Route
Getting Started
Get().route('/url', 'Controller@method')Creating our Route:
ROUTES = [
Get().route('/', 'WelcomeController@show').name('welcome'),
# Blog
Get().route('/blog', 'BlogController@show')
]Last updated