質問編集履歴

2

コード追加

2019/09/11 03:16

投稿

pmo23
pmo23

スコア14

test CHANGED
File without changes
test CHANGED
@@ -349,3 +349,71 @@
349
349
  }
350
350
 
351
351
  ```
352
+
353
+
354
+
355
+ ###StoreTweet.php
356
+
357
+ ```
358
+
359
+ <?php
360
+
361
+
362
+
363
+ namespace App\Http\Requests;
364
+
365
+
366
+
367
+ use Illuminate\Foundation\Http\FormRequest;
368
+
369
+
370
+
371
+ class StoreTweet extends FormRequest
372
+
373
+ {
374
+
375
+ /**
376
+
377
+ * Determine if the user is authorized to make this request.
378
+
379
+ *
380
+
381
+ * @return bool
382
+
383
+ */
384
+
385
+ public function authorize()
386
+
387
+ {
388
+
389
+ return true;
390
+
391
+ }
392
+
393
+
394
+
395
+ /**
396
+
397
+ * Get the validation rules that apply to the request.
398
+
399
+ *
400
+
401
+ * @return array
402
+
403
+ */
404
+
405
+ public function rules()
406
+
407
+ {
408
+
409
+ return [
410
+
411
+ 'text' => 'required'
412
+
413
+ ];
414
+
415
+ }
416
+
417
+ }
418
+
419
+ ```

1

参考サイトの追加

2019/09/11 03:16

投稿

pmo23
pmo23

スコア14

test CHANGED
File without changes
test CHANGED
@@ -1,6 +1,6 @@
1
1
  現在以下のサイトを参考にツイート投稿アプリケーションを作成していますが、formで送信すると以下のエラーが表示されます。
2
2
 
3
- CSRFのところが原因かと思い以下を参考にしてみましたが、解決しません。laravel,vueが初心者なので、アドバイス宜しくお願い致します。
3
+ CSRFのところが原因かと思い以下を参考にしてみましたが、解決しません。laravel,vueが初心者なので、アドバイス宜しくお願い致します。[リンク内容](https://qiita.com/rana_kualu/items/3f9d0d6b9a363fd2108e)
4
4
 
5
5
 
6
6