web.php 367 B

123456789101112131415161718192021
  1. <?php
  2. use Illuminate\Support\Facades\Route;
  3. Route::get('/', function () {
  4. return view('home');
  5. });
  6. Route::get('/hello', function() {
  7. $users = [
  8. 'John',
  9. 'Will',
  10. 'Steve',
  11. 'Mary',
  12. ];
  13. // return view('hello', ['users' => $users]);
  14. return view('hello', compact('users'));
  15. });
  16. Route::view('/static', 'staticblabla');