Skip to content

Instantly share code, notes, and snippets.

@Peelz
Last active June 12, 2018 05:35
Show Gist options
  • Save Peelz/91211f6d08d4f69017319fbfbd265406 to your computer and use it in GitHub Desktop.
Save Peelz/91211f6d08d4f69017319fbfbd265406 to your computer and use it in GitHub Desktop.
initial route laravel
<?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');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment