1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Laravel で MariaDB の CRUD (その 4 Create)

Last updated at Posted at 2018-06-14

こちらのページの続きです。

Laravel で MariaDB の CRUD (その 3)
新規作成機能を作ります。

  1. ルーティングを確認
  2. >articles/create があることを確認
    php artisan route:list
    
  3. 一覧ページに新規作成のリンクをつけます。
  4. resources/views/articles/index.blade.php
    {{-- layoutsフォルダのapplication.blade.phpを継承 --}}
    @extends('layouts.application')
    
    {{-- @yield('title')にテンプレートごとにtitleタグの値を代入 --}}
    @section('title', '記事一覧')
    
    {{-- application.blade.phpの@yield('content')に以下のレイアウトを代入 --}}
    @section('content')
    <div>
        <a href="/articles/create">新規作成</a>
    </div>
    <table>
     @foreach ($articles as $article)
            <tr>
        <td>{{$article->title}}</td>
        <td>{{$article->body}}</td>
            <td><a href="/articles/{{$article->id}}">詳細を表示</a></td>
            </tr>
      @endforeach
    </table>
    @endsection
    
  5. ビューの作成
  6. resources/views/articles/create.blade.php
    {{-- layoutsフォルダのapplication.blade.phpを継承 --}}
    @extends('layouts.application')
    
    {{-- @yield('title')にテンプレートごとの値を代入 --}}
    @section('title', '新規作成')
    
    {{-- application.blade.phpの@yield('content')に以下のレイアウトを代入 --}}
    @section('content')
      <form action="/articles" method="post">
        {{-- 以下を入れないとエラーになる --}}
        {{ csrf_field() }}
        <div>
          <label for="title">タイトル</label>
          <input type="text" name="title" placeholder="記事のタイトルを入れる">
        </div>
        <div>
          <label for="body">内容</label>
          <textarea name="body" rows="8" cols="80" placeholder="記事の内容を入れる"></textarea>
        </div>
          <input type="submit" value="送信">
        </div>
      </form>
    @endsection
    
  7. コントローラーの修正
  8. app/Http/Controllers/ArticlesController.php
    // 略
        public function create()
        {
            return view('articles.create');
        }
    // 略
        public function store(Request $request)
        {
      // モデルからインスタンスを生成
      $article = new Article;
      // $requestにformからのデータが格納されているので、以下のようにそれぞれ代入する
      $article->title = $request->title;
      $article->body = $request->body;
      // 保存
      $article->save();
      // 保存後 一覧ページへリダイレクト
      return redirect('/articles');
        }
    // 略
    
  9. サーバーを起動してブラウザーで確認
  10. php artisan serve
    

    http://localhost:8000/articles
    laravel_jun1405.png

    新規作成をクリック
    laravel_jun1406.png

    送信をクリック
    laravel_jun1407.png

次のページ

Laravel で MariaDB の CRUD (その 5 Update)

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?