uncomment the routes
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user