Laravel - Implicit route model binding with soft deleted data
问题 I am having a small issue. There are two user roles and one is a normal member and one is an admin. The member can delete a blog and they will not be able to see the blog after they delete (soft delete) it while the admin can still see the blog, even if it's soft deleted. Example code: // Route file Route::get('/blog/{blog}', 'BlogController@show'); // BlogController public function show(App\Blog $blog) { // It never gets to here if the blog has been soft deleted... // Automatically throws an