Article #558

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

field.blade.phpの修正

後半のビューの修正です。fieldビューは、createアクションとeditアクションの2次ビューでありファイルはfield.blade.phpです。以下に修正する行を示します。

      {!! Form::number('category_id'null, ['class' => 'form-control']) !!}

このビューの画面表示です。

図%%.1
図558.1 createアクション初期画面

標準で生成されたコードでは、図558.1のとおりcategory_idとして数字を入力するフォームが生成されますが、これを次のように修正します。

      {!! Form::select('category_id'$categoriesnull, ['class'=>'form-control']) !!}

このビューの画面表示です。Form::selectによりdropDownListのフォームが生成されます。

図%%.2
図558.2 createアクション修正後画面

ビューが共通であるため、editアクションも同様な画面表示となります。


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

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.