uncomment the routes

This commit is contained in:
2024-02-24 10:40:20 +00:00
parent 5459c77829
commit 56d5a433b4
13 changed files with 110 additions and 107 deletions

View File

@@ -15,6 +15,7 @@ use Webpatser\Uuid\Uuid;
use Illuminate\Support\Facades\Storage;
use Illuminate\Support\Facades\Auth;
use App\Models\RandDVoting;
use Illuminate\Support\Str;
use App\Models\RandDVotingPaperAnswer;
class NewRandDCtrl extends Controller
@@ -204,7 +205,7 @@ class NewRandDCtrl extends Controller
}
}
// Make Unique Code
$uuid = Uuid::generate();
$uuid = Str::uuid();
// Upload Final report 1
if ($request->has('proj_rfp_file')) {
@@ -308,7 +309,7 @@ class NewRandDCtrl extends Controller
}
// Make Unique Code
$uuid = Uuid::generate();
$uuid = Str::uuid();
// Upload Final report 1
$rfp_file = $newRandD->rfp_file;

View File

@@ -11,6 +11,7 @@ use Illuminate\Support\Facades\Auth;
use App\Models\SetadProvince;
use phpDocumentor\Reflection\Utils;
use Webpatser\Uuid\Uuid;
use Illuminate\Support\Str;
use Illuminate\Support\Facades\Storage;
class ResearchDevController extends Controller
@@ -370,7 +371,7 @@ class ResearchDevController extends Controller
}
// Make Unique Code
$uuid = Uuid::generate();
$uuid = Str::uuid();
switch ($request->domain_id) {