LARAVEL
[Laravel] Routing
보겸삼촌
2020. 2. 23. 21:40
# 개발환경 os: windows10 pro 64bit php : v7.4.2 node : v10.16.0 laravel : 6.16.0 |
0. 디렉토리 구조
1. /root/routes/web.php
1.1. default
'/' route 경로로 접근했을 때, /root/resources/views/welcome.blade.php 페이지를 반환
1.2. web.php 수정
'hello' route 경로로 접근했을 때, views/hello.blade.php 페이지를 반환
2. /root/resources/views/hello.blade.php 생성
/*
* /root/resources/views/hello.blade.php
*/
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Hello</h1>
<h2>hello blade php</h2>
</body>
</html>
2.1. 브라우저 확인 / 127.0.0.1:8000/hello