演習・ビューの作成
profile.blade.php を作成して、自己紹介用のHTMLを記述し、
(Docker Toolboxの場合は http://(dockerのipアドレス)/profile )
にアクセスしたら表示されるようにしましょう。
profile.blade.php
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>プロフィール</title>
</head>
<body>
<!-- ここにプロフィールを記入 -->
</body>
</html>