質問編集履歴
3
写真の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -314,4 +314,10 @@
|
|
314
314
|
|
315
315
|
```
|
316
316
|
|
317
|
+
![イメージ説明](d6634a0fcc788b13502c06cd7be253d7.png)
|
318
|
+
|
319
|
+
![![イメージ説明](54a00e43a678e5fcbad89badab964574.png)]
|
320
|
+
|
321
|
+
上の写真の通り、値を送信するとそのままboard/addにもう一度アクセスした状態となります。
|
322
|
+
|
317
323
|
laravel6
|
2
POST送信を検知していることについて
test
CHANGED
File without changes
|
test
CHANGED
@@ -6,7 +6,11 @@
|
|
6
6
|
|
7
7
|
コードは下記の通りです。
|
8
8
|
|
9
|
+
dd($request->all())について
|
10
|
+
|
11
|
+
dd($request->all())の内容がブラウザに表示されていません。
|
12
|
+
|
9
|
-
web.phpでpost
|
13
|
+
web.phpでルートのpostを除けると、POSTがサポートされていないと出ているので,web.phpでアクセスは検知しているものの、その後のコントローラーの処理が実行されない状況です。
|
10
14
|
|
11
15
|
お分かりの方いましたら、ご教授お願いします。
|
12
16
|
|
1
Board.phpの内容とデータベースの定義した物を追加しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -180,4 +180,134 @@
|
|
180
180
|
|
181
181
|
```
|
182
182
|
|
183
|
+
```Board.php
|
184
|
+
|
185
|
+
<?php
|
186
|
+
|
187
|
+
|
188
|
+
|
189
|
+
namespace App;
|
190
|
+
|
191
|
+
|
192
|
+
|
193
|
+
use Illuminate\Database\Eloquent\Model;
|
194
|
+
|
195
|
+
|
196
|
+
|
197
|
+
class Board extends Model
|
198
|
+
|
199
|
+
{
|
200
|
+
|
201
|
+
protected $guarded = array('id');
|
202
|
+
|
203
|
+
|
204
|
+
|
205
|
+
public static $rules = array(
|
206
|
+
|
207
|
+
'person' => 'required',
|
208
|
+
|
209
|
+
'title' => 'required',
|
210
|
+
|
211
|
+
'message' => 'required'
|
212
|
+
|
213
|
+
);
|
214
|
+
|
215
|
+
|
216
|
+
|
217
|
+
public function getData()
|
218
|
+
|
219
|
+
{
|
220
|
+
|
221
|
+
return $this->id . ':' . $this->title . '(' . $this->person->name . ')';
|
222
|
+
|
223
|
+
}
|
224
|
+
|
225
|
+
public function person()
|
226
|
+
|
227
|
+
{
|
228
|
+
|
229
|
+
return $this->belongsTo('App\Person');
|
230
|
+
|
231
|
+
}
|
232
|
+
|
233
|
+
}
|
234
|
+
|
235
|
+
|
236
|
+
|
237
|
+
```
|
238
|
+
|
239
|
+
```create_board_table
|
240
|
+
|
241
|
+
<?php
|
242
|
+
|
243
|
+
|
244
|
+
|
245
|
+
use Illuminate\Database\Migrations\Migration;
|
246
|
+
|
247
|
+
use Illuminate\Database\Schema\Blueprint;
|
248
|
+
|
249
|
+
use Illuminate\Support\Facades\Schema;
|
250
|
+
|
251
|
+
|
252
|
+
|
253
|
+
class CreateBoardsTable extends Migration
|
254
|
+
|
255
|
+
{
|
256
|
+
|
257
|
+
/**
|
258
|
+
|
259
|
+
* Run the migrations.
|
260
|
+
|
261
|
+
*
|
262
|
+
|
263
|
+
* @return void
|
264
|
+
|
265
|
+
*/
|
266
|
+
|
267
|
+
public function up()
|
268
|
+
|
269
|
+
{
|
270
|
+
|
271
|
+
Schema::create('boards', function (Blueprint $table) {
|
272
|
+
|
273
|
+
$table->increments('id');
|
274
|
+
|
275
|
+
$table->integer('person_id');
|
276
|
+
|
277
|
+
$table->string('title');
|
278
|
+
|
279
|
+
$table->string('message');
|
280
|
+
|
281
|
+
$table->timestamps();
|
282
|
+
|
283
|
+
});
|
284
|
+
|
285
|
+
}
|
286
|
+
|
287
|
+
|
288
|
+
|
289
|
+
/**
|
290
|
+
|
291
|
+
* Reverse the migrations.
|
292
|
+
|
293
|
+
*
|
294
|
+
|
295
|
+
* @return void
|
296
|
+
|
297
|
+
*/
|
298
|
+
|
299
|
+
public function down()
|
300
|
+
|
301
|
+
{
|
302
|
+
|
303
|
+
Schema::dropIfExists('boards');
|
304
|
+
|
305
|
+
}
|
306
|
+
|
307
|
+
}
|
308
|
+
|
309
|
+
|
310
|
+
|
311
|
+
```
|
312
|
+
|
183
313
|
laravel6
|