mirror of
https://github.com/m1ngsama/php.git
synced 2026-03-25 21:13:52 +00:00
7 lines
108 B
PHP
7 lines
108 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::get('/', function () {
|
|
return view('welcome');
|
|
});
|