"라라벨 routes/web.php"의 두 판 사이의 차이

(새 문서: ==개요== ;라라벨 routes/web.php <source lang='php'> <?php /* |-------------------------------------------------------------------------- | Web Routes |-------------------------...)
 
잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
(다른 사용자 한 명의 중간 판 2개는 보이지 않습니다)
2번째 줄: 2번째 줄:
;라라벨 routes/web.php
;라라벨 routes/web.php


<source lang='php'>
<syntaxhighlight lang='php'>
<?php
<?php


19번째 줄: 19번째 줄:
     return view('welcome');
     return view('welcome');
});
});
</source>
</syntaxhighlight>


==같이 보기==
==같이 보기==
* [[routes/api.php]]
* [[routes/api.php]]
* [[routes/console.php]]


==참고==
==참고==

2020년 11월 2일 (월) 02:58 기준 최신판

1 개요[ | ]

라라벨 routes/web.php
<?php

/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/

Route::get('/', function () {
    return view('welcome');
});

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}