0
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 3 years have passed since last update.

「コピペで使える」都道府県のプルダウン

Last updated at Posted at 2020-11-19

#都道府県のプルダウン
そのままでcopyすれば使えるため、メモ帳として記録します。
※間違いがあれば、ご指摘ください。

<label class="form-label"><strong>都道府県</strong><span class="badge badge-danger ml-1">必須</span></label>
<select name="prefecture_of_address" id="prefecture_of_address">
    <option value="" ></option>
    @foreach (config('pref') as $pref)
    <option value="{{ $pref }}">{{ $pref }}</option>
    @endforeach
</select>
0
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
0
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?