@forelse ($posts as $index => $post)
<li>
<a href="/posts/{{ $index }}">
{{ $post }}
</a>
</li>
このコードので $posts
の中のデータを $post
として forelse
するのはわかるのですが、
as $index=> $post
では、$posts
のデータを $index
としてさらに $post
に代入すると認識したらいいのでしょうか?
また <a href="">
のである ""
の中はディレクトリ内のファイル名と認識していたのですが、lalavel の場合は書き方が違うのでしょうか。
あと、$index =>$post
としたならば何故 <a href="/posts/{{ $index }}>
で変数の名前が $index
になるのでしょうか。解説お願いします。
この回答を見るにはプレミアムプランへの登録が必要です
プレミアムプランとは?