firstOrFail(); }); Route::bind('lesson', function ($value) { return \App\Models\Lesson::where('slug', $value)->firstOrFail(); }); Route::bind('chapter', function ($value) { return \App\Models\Chapter::where('slug', $value)->firstOrFail(); }); Route::bind('section', function ($value) { return LessonSection::where('slug', $value)->firstOrFail(); }); } }