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 (その 3)

Last updated at Posted at 2018-06-14

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

Laravel で MariaDB の CRUD (その 2)
詳細ページを作成します。

  1. ルーティングを確認
  2. > articles.show があることを確認
    php artisan route:list
    
    $ php artisan route:list
    +--------+-----------+-------------------------+------------------+-------------------------------------------------+------------+
    | Domain | Method    | URI                     | Name             | Action                                          | Middleware |
    +--------+-----------+-------------------------+------------------+-------------------------------------------------+------------+
    |        | GET|HEAD  | /                       |                  | Closure                                         | web        |
    |        | GET|HEAD  | api/user                |                  | Closure                                         | api        |
    |        |           |                         |                  |                                                 | auth:api   |
    |        | GET|HEAD  | articles                | articles.index   | App\Http\Controllers\ArticlesController@index   | web        |
    |        | POST      | articles                | articles.store   | App\Http\Controllers\ArticlesController@store   | web        |
    |        | GET|HEAD  | articles/create         | articles.create  | App\Http\Controllers\ArticlesController@create  | web        |
    |        | GET|HEAD  | articles/{article}      | articles.show    | App\Http\Controllers\ArticlesController@show    | web        |
    |        | PUT|PATCH | articles/{article}      | articles.update  | App\Http\Controllers\ArticlesController@update  | web        |
    |        | DELETE    | articles/{article}      | articles.destroy | App\Http\Controllers\ArticlesController@destroy | web        |
    |        | GET|HEAD  | articles/{article}/edit | articles.edit    | App\Http\Controllers\ArticlesController@edit    | web        |
    +--------+-----------+-------------------------+------------------+-------------------------------------------------+------------+
    
  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')
    <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. show アクションの編集
  6. app/Http/Controllers/ArticlesController.php
    // 略
        public function show($id)
        {
     // 引数で受け取った$idを元にfindでレコードを取得
      $article = Article::find($id);
      // viewにデータを渡す
      return view('articles.show', ['article' => $article]);
        }
    // 略
    
  7. 詳細ページのビューを作成
  8. resources/views/articles/show.blade.php
    {{-- layoutsフォルダのapplication.blade.phpを継承 --}}
    @extends('layouts.application')
    
    {{-- @yield('title')にテンプレートごとの値を代入 --}}
    @section('title', '記事詳細')
    
    {{-- application.blade.phpの@yield('content')に以下のレイアウトを代入 --}}
    @section('content')
      <h1>{{$article->title}}</h1>
      <p>{{$article->body}}</p>
      <br><br>
      <a href="/articles">一覧に戻る</a>
    @endsection
    
  9. サーバーを起動してブラウザーで確認
  10. php artisan serve
    

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

    詳細表示をクリックすると
    laravel_jun1404.png

確認したバージョン

$ php artisan --version
Laravel Framework 10.37.3

次のページ

Laravel で MariaDB の CRUD (その 4 Create)

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?