| 123456789101112131415161718192021 |
- <?php
- use Illuminate\Support\Facades\Route;
- Route::get('/', function () {
- return view('home');
- });
- Route::get('/hello', function() {
- $users = [
- 'John',
- 'Will',
- 'Steve',
- 'Mary',
- ];
- // return view('hello', ['users' => $users]);
- return view('hello', compact('users'));
- });
- Route::view('/static', 'staticblabla');
|