Skip to content

Instantly share code, notes, and snippets.

@davidpeach
Created December 17, 2021 16:17
Show Gist options
  • Save davidpeach/367d0fb8317f7033df352f66816d3f2f to your computer and use it in GitHub Desktop.
Save davidpeach/367d0fb8317f7033df352f66816d3f2f to your computer and use it in GitHub Desktop.
Creating a gist from PHP Storm
<?php
use Illuminate\Support\Facades\Route;
/*
|--------------------------------------------------------------------------
| 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');
});
// This is a change
// a dev change with more
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment