728x90
Laravel์ ๋ทฐ ๊ธฐ๋ฅ์ ์ฌ์ฉํ์ฌ HTML ํ์ผ์ ์ถ๋ ฅํ๋ ๋ฒ์ ์์๋ณด๊ฒ ์ต๋๋ค.
1. ๋ทฐ ํ์ผ์ ์์ฑํฉ๋๋ค. resources/views ํด๋์ greeting.blade.php ํ์ผ์ ์๋ก ๋ง๋ญ๋๋ค.
2. greeting.blade.php ํ์ผ์ ์๋์ ๊ฐ์ด ์์ฑํฉ๋๋ค:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Greeting</title>
</head>
<body>
<h1>Hello, this is a view file!</h1>
</body>
</html>
3. ์ปจํธ๋กค๋ฌ์์ ์ด ๋ทฐ ํ์ผ์ ๋ฐํํ๋๋ก ์์ ํฉ๋๋ค. HelloController.php์ greet ๋ฉ์๋๋ฅผ ์๋์ฒ๋ผ ์์ ํฉ๋๋ค:
public function greet()
{
return view('greeting');
}
4. **http://127.0.0.1:8000/greet**์ ์ ์ํ๋ฉด ์ด์ greeting.blade.php์ ์์ฑํ HTML ๋ด์ฉ์ด ์ถ๋ ฅ๋ฉ๋๋ค.
'๐ป์ปดํจํฐ ๊ธฐ๋ก์ฅ > PHP' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
Laravel ์ค์ต : ํ ์ผ ๋ชฉ๋ก(To-Do List) (0) | 2024.11.08 |
---|---|
Laravel ๋ผ์ฐํธ(Route)์ ์ปจํธ๋กค๋ฌ(Controller) (0) | 2024.11.07 |
Laravel ๊ฐ๋ฐ ์๋ฒ ์คํํ๊ธฐ (Windows11) (0) | 2024.11.06 |
Laravel 8.0 ํ๋ก์ ํธ ์์ฑํ๊ธฐ(Windows11) (0) | 2024.11.05 |
์ปดํฌ์ (Composer) ์ค์นํ๊ธฐ (Windows11) (0) | 2024.10.31 |