前提・実現したいこと
Laravel6でブログのようなシステムを作成しようとしています。
posts
テーブルに登録してあるデータを順番に出力したいです。
発生している問題・エラーメッセージ
posts
テーブルのはじめのものしか表示されません
テーブルに何個表示されているかに関係なく4つ出力されます。
これはテーブルに1つ目の記事
と登録した際の結果です。
該当のソースコード
データベース名 | テーブル名 |
---|---|
laravel | posts |
php
1//ファイル名web.php 2 3<?php 4 5/* 6|-------------------------------------------------------------------------- 7| Web Routes 8|-------------------------------------------------------------------------- 9| 10| Here is where you can register web routes for your application. These 11| routes are loaded by the RouteServiceProvider within a group which 12| contains the "web" middleware group. Now create something great! 13| 14*/ 15 16if (version_compare(PHP_VERSION, '7.2.0', '>=')) { 17 error_reporting(E_ALL ^ E_NOTICE ^ E_WARNING); 18} 19 20use App\Note;// /app/Note.phpを参照 21use Illuminate\Http\Request; //HTTPリクエストを扱うための様々なメソッドの参照 22 23Route::get('/', function () { 24 25 $posts = Note::orderBy('created_at', 'asc')->first();//get();からfirst();に変更 26 return view('notes',[ 27 'posts' => $posts 28 ]); 29 // return view('notes'); 30}); 31 32// 投稿を追加 33Route::post('/notes', function (Request $request){ 34 // バリデーション 35 $validator = Validator::make($request->all(),[ 36 'post_title' => 'required|max:255', 37 ]); 38 39 // バリデーション:エラー 40 if($validator->fails()) { 41 return redirect('/') 42 ->withInput() 43 ->withErrors($validator); 44 } 45 // 46 47 // 投稿処理 48 // Eloquentモデル 49 $posts = new Note; 50 $posts->post_title = $request->post_title; 51 $posts->post_tag= 'テストタグ'; 52 $posts->post_body = 'テスト本文です'; 53 $posts->save();//「/」ルートにリダイレクト 54 return redirect('/'); 55 56}); 57 58 59 60//投稿を削除 61Route::delete('/notes', function (Note $note){ 62 $note->delete(); 63 return redirect('/'); 64 // 65});
php
1//ファイル名notes.blade.php 2@extends('layouts.app') 3@section('content') 4 5<!--Bootstrapの定形コード--> 6<div class="card-body"> 7 <div class="card-title"> 8 記事のタイトル 9 </div> 10 11 <!--バリデーションエラーの表示に使用--> 12 @include('common.errors') 13 14 <!--記事登録フォーム--> 15 <form action="{{url('notes')}}" method="POST" class="form-horizontal"> 16 {{csrf_field()}} 17 18 19 <!--記事のタイトル--> 20 <div class="form-group"> 21 <div class="col-sm-6"> 22 <input type="text" name="post_title" class="form-control"> 23 </div> 24 </div> 25 26 <!--記事投稿ボタン--> 27 <div class="form-group"> 28 <dic class="col-sm-offset-3 col-sm-6"> 29 <button type="submit" class="btn btn-primary"> 30 投稿 31 </button> 32 </dic> 33 </div> 34 </form> 35 36 @if(count($posts) > 0) 37 <div class="card-body"> 38 <div class="card-title"> 39 投稿済みの記事 40 </div> 41 <div class="card-body"> 42 <table class="table table-striped task-table"> 43 <!--テーブルヘッダ--> 44 <thred> 45 <th>本一覧</th> 46 <th> </th> 47 </thred> 48 <!--テーブル本体--> 49 <tbody> 50 @foreach($posts as $post) 51 <tr> 52 <!--本タイトル--> 53 <td class="table-text"> 54 <div>{{$posts->post_title}}</div> 55 </td> 56 57 <!--本削除ボタン--> 58 <td> 59 <form action="{{url('note/'.$note->id) }}" method="POST"> 60 {{csrf_field()}} 61 {{method_field('DELETE')}} 62 63 <button type="submit" class="btn btn-danger"> 64 削除 65 </button> 66 </form> 67 68 </td> 69 </tr> 70 @endforeach 71 </tbody> 72 </table> 73 </div> 74 </div> 75 @endif 76</div> 77 78<!--投稿済みの記事--> 79 80@endsection
補足情報(FW/ツールのバージョンなど)
Apache2.4系
Laravel6系
MySQL5.7系
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/07 06:03
2020/04/07 06:09