質問編集履歴

2

書式の改善

2020/08/23 04:20

投稿

hichan
hichan

スコア0

test CHANGED
File without changes
test CHANGED
@@ -24,9 +24,59 @@
24
24
 
25
25
  ```ここに言語を入力
26
26
 
27
- resource/sviews/users/mypage.blade.php
28
-
29
- @foreach ($wants as $want)
27
+ <!DOCTYPE html>
28
+
29
+ <html lang="en">
30
+
31
+ <head>
32
+
33
+ <meta charset="UTF-8">
34
+
35
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
36
+
37
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
38
+
39
+ <title>Document</title>
40
+
41
+ <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
42
+
43
+ </head>
44
+
45
+ <body>
46
+
47
+   <h2>マイページ</h2>
48
+
49
+
50
+
51
+ <p>名前:{{ $user->name }}</p>
52
+
53
+
54
+
55
+ <p>メールアドレス:{{ $user->email }}</p>
56
+
57
+ <p>写真:{{ $user->img}}</p>
58
+
59
+
60
+
61
+
62
+
63
+
64
+
65
+
66
+
67
+ <table border="1">
68
+
69
+ <tr>
70
+
71
+
72
+
73
+ <th>⭐️行きたいリスト</th>
74
+
75
+ <th>⭐️行ったリスト</th>
76
+
77
+ </tr>
78
+
79
+ @foreach ($wants as $want)
30
80
 
31
81
  <div class="m-4 p-4 border border-primary">
32
82
 
@@ -42,15 +92,15 @@
42
92
 
43
93
  @endforeach
44
94
 
95
+ </table>
96
+
97
+ </body>
98
+
99
+ </html>
100
+
101
+
102
+
45
- ```
103
+ ```
46
-
47
-
48
-
49
-
50
-
51
-
52
-
53
-
54
104
 
55
105
  ### 試したこと
56
106
 

1

書式の改善

2020/08/23 04:20

投稿

hichan
hichan

スコア0

test CHANGED
File without changes
test CHANGED
@@ -12,11 +12,17 @@
12
12
 
13
13
  ### 発生している問題・エラーメッセージ
14
14
 
15
+ ````````````ここに言語を
16
+
15
17
  Undefined variable: want (View: /Applications/XAMPP/xamppfiles/htdocs/Kyoto/resources/views/users/mypage.blade.php)
18
+
19
+ ```
16
20
 
17
21
 
18
22
 
19
23
  ### 該当のソースコード
24
+
25
+ ```ここに言語を入力
20
26
 
21
27
  resource/sviews/users/mypage.blade.php
22
28
 
@@ -36,6 +42,10 @@
36
42
 
37
43
  @endforeach
38
44
 
45
+ ```
46
+
47
+
48
+
39
49
 
40
50
 
41
51
 
@@ -52,11 +62,19 @@
52
62
 
53
63
  ### ルーティング
54
64
 
65
+ ```ここに言語を入力
66
+
55
67
  Route::get('user/{id}', 'MypageController@index')->name('users.mypage');
56
68
 
57
69
 
58
70
 
71
+ ```
72
+
59
73
  ### シーディング
74
+
75
+ ```ここに言語を入力
76
+
77
+
60
78
 
61
79
  public function run()
62
80
 
@@ -98,9 +116,11 @@
98
116
 
99
117
 
100
118
 
101
-
119
+ ```
102
120
 
103
121
  ### コントローラー
122
+
123
+ ```ここに言語を入力
104
124
 
105
125
 
106
126
 
@@ -118,9 +138,15 @@
118
138
 
119
139
  ]);
120
140
 
141
+ ```
142
+
121
143
 
122
144
 
123
145
  ### マイグレーション
146
+
147
+ ```ここに言語を入力
148
+
149
+
124
150
 
125
151
  public function up()
126
152
 
@@ -142,7 +168,7 @@
142
168
 
143
169
  }
144
170
 
145
-
171
+ ```
146
172
 
147
173
  ### 補足情報(FW/ツールのバージョンなど)
148
174