From 01f2180fa909ca1b8e12f725e59b9878b97176fd Mon Sep 17 00:00:00 2001 From: dhanabalan Date: Tue, 27 May 2025 18:32:08 +0530 Subject: [PATCH] Updated redirect URL to PDS login page instead of laravel welcome page --- routes/web.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index 86a06c5..854c0d6 100644 --- a/routes/web.php +++ b/routes/web.php @@ -3,5 +3,11 @@ use Illuminate\Support\Facades\Route; Route::get('/', function () { - return view('welcome'); + return redirect('/admin'); }); + +// Route::get('/test_mail', function () { +// Mail::to('jothikumar.padmanaban@cripumps.com')->send( +// new test() +// ); +// });