Skip to content

Instantly share code, notes, and snippets.

@wichaksono
Created January 12, 2018 01:53
Show Gist options
  • Select an option

  • Save wichaksono/515bb56bf33a4855adf89c468375a8b0 to your computer and use it in GitHub Desktop.

Select an option

Save wichaksono/515bb56bf33a4855adf89c468375a8b0 to your computer and use it in GitHub Desktop.
<?php
/**
* Routing
*/
Route::get('/', function(){
return view('welcome');
});
Route::get('/flash-me', function(){
flashMe()->success();
return redirect()->to('/');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment