Rofihimam

Untitled

Mar 11th, 2020
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.74 KB | None | 0 0
  1. <?php
  2.  
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Web Routes
  6. |--------------------------------------------------------------------------
  7. |
  8. | Here is where you can register web routes for your application. These
  9. | routes are loaded by the RouteServiceProvider within a group which
  10. | contains the "web" middleware group. Now create something great!
  11. |
  12. */
  13.  
  14. Route::get('/', function () {
  15.     return view('welcome');
  16. });
  17.  
  18. Route::get('/belajar', function () {
  19.     return view('belajar');
  20. });
  21.  
  22. Route::get('/studisatu', function () {
  23.     return view('studisatu');
  24. });
  25.  
  26. Route::get('/studidua', function () {
  27.     return view('studidua');
  28. });
  29.  
  30. Route::get('/studitiga', function () {
  31.     return view('studitiga');
  32. });
Add Comment
Please, Sign In to add comment