This commit is contained in:
f4ilji
2024-12-24 19:33:35 +05:00
parent 700bf98de6
commit da4df5b89c
2 changed files with 7 additions and 1 deletions
+6
View File
@@ -12,6 +12,7 @@ use App\Http\Controllers\SearchController;
use App\Http\Controllers\VkAuthController;
use App\Http\Controllers\VkPostController;
use App\Models\AdmissionCampaign;
use App\Services\Vicon\DirectionStudy\DirectionStudyService;
use App\Services\VK\VkAuthService;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Route;
@@ -23,6 +24,11 @@ Route::get('/getAcademicYear', function () {
return $activeCampaign->academic_year;
})->name('academic.year');
Route::get('/test', function () {
$service = new DirectionStudyService();
dd($service->getAllNaprsUuid());
});
Route::get('/search', [SearchController::class, 'index'])->name('client.search.index');
Route::get('/widget/get-posts', [ClientWidgetPostController::class, 'index'])->name('client.widget.post.index');