That is what you get when the link for the route is wrong. You have
<a href="{{ route('admin.blog.post.edit', ['post_id => $post_id']) }}">Edit</a>
and it needs to be
<a href="{{ route('admin.blog.post.edit', ['post_id' => $post_id]) }}">Edit</a>
small differences and easy to miss
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community