Refeactor: Change the folder for pages for better organization

This commit is contained in:
Sallu9007
2025-04-20 21:47:27 +05:30
parent 9cb5cb80bd
commit 36d36df47b
27 changed files with 32 additions and 32 deletions

View File

@@ -13,7 +13,7 @@ class OnlineCoursesController extends Controller
{
$onlineCourse = OnlineCourse::findOrFail($id);
return view('onlineCourses.edit', compact('onlineCourse'));
return view('pages.onlineCourses.edit', compact('onlineCourse'));
}
public function update(Request $request, $id)