$index と {id} が対応しているのですか?

$index と {id} が直接連動しているわけではありませんが、結果として $index の値が {id} の位置に渡されます。
2023年9月21日
ユーザー

/MyBBS/resources/views/index.blade.php の、

 @forelse ($posts as $index => $post)
                <li>
                    <a href="{{ route('posts.show', $index) }}">
                        {{ $post }}
                    </a>
                </li>
            @empty
                <li>No posts yet!</li>
            @endforelse

$index と、
/MyBBS/routes/web.php の、

Route::get('/posts/{id}', [PostController::class, 'show'])
    ->name('posts.show');

{id} が対応しているというふうに理解しているのですが、正しいですか?

この回答を見るにはプレミアムプランへの登録が必要です

プレミアムプランとは?

このレッスンの質問と回答(2)