Skip to content

Instantly share code, notes, and snippets.

@rizkhal
Created February 22, 2020 08:23
Show Gist options
  • Save rizkhal/a1daa68cdd208c5e013a1111a264f8b7 to your computer and use it in GitHub Desktop.
Save rizkhal/a1daa68cdd208c5e013a1111a264f8b7 to your computer and use it in GitHub Desktop.
<?php
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::get('/', function() {
return view('welcome');
});
Route::resource('posts', 'PostController');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment