Article #556

既に発行済みのブログであっても適宜修正・追加することがあります。
We may make changes and additions to blogs already published.
posted by sakurai on November 25, 2022 #556

table.blade.phpの修正

次に後半のビューの修正を行います。修正するファイルはindex()アクションの2次ビューであり、ファイルはtable.blade.phpです。修正する行は以下の2行です。

        <th>Category Id</th>
       :
            <
td>{{ $doc->category_id ;}}</td>

このビューの修正する前の画面表示です。

図%%.1
図556.1 indexアクション初期画面

図556.1ではCategory idが数字となっていますが、これを次のように修正します。

        <th>Category</th>
       :
            <
td>{{ $categories[$doc->category_id] }}</td>

このビューの画面表示です。図556.2のようにcategoryが名称に変化しました。

図%%.2
図556.2 indexアクション修正後画面

左矢前のブログ 次のブログ右矢

Leave a Comment

Your email address will not be published.

You may use Markdown syntax. If you include an ad such as http://, it will be invalidated by our AI system.

Please enter the numbers as they are shown in the image above.