main
Last change
on this file since c454c0f was c454c0f, checked in by bube-ristovska <ristovska725@…>, 11 months ago |
First commit
|
-
Property mode
set to
100644
|
File size:
558 bytes
|
Line | |
---|
1 | <?php
|
---|
2 |
|
---|
3 | use Illuminate\Support\Facades\Route;
|
---|
4 |
|
---|
5 | /*
|
---|
6 | |--------------------------------------------------------------------------
|
---|
7 | | Web Routes
|
---|
8 | |--------------------------------------------------------------------------
|
---|
9 | |
|
---|
10 | | Here is where you can register web routes for your application. These
|
---|
11 | | routes are loaded by the RouteServiceProvider and all of them will
|
---|
12 | | be assigned to the "web" middleware group. Make something great!
|
---|
13 | |
|
---|
14 | */
|
---|
15 |
|
---|
16 | Route::get('/', function () {
|
---|
17 | return view('welcome');
|
---|
18 | });
|
---|
19 | Route::get('/login', function () {
|
---|
20 | return view('login');
|
---|
21 | });
|
---|
22 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.