Untitled

 avatar
unknown
plain_text
2 years ago
1.6 kB
4
Indexable
<?php

/** @var \Laravel\Lumen\Routing\Router $router */

/*
|--------------------------------------------------------------------------
| Application Routes untuk Feature input QC
|--------------------------------------------------------------------------
|
| Here is where you can register all of the routes for an application.
| It is a breeze. Simply tell Lumen the URIs it should respond to
| and give it the Closure to call when that URI is requested.
|
*/

$router->group(
    ['prefix' => 'mms/v1', 'namespace' => 'V1'],
    function () use ($router) {
        $router->get('/listQC', 'QcController@listQc');
        $router->get('/listInboxQC', 'QcController@listInboxQC');
        $router->get('/LogQc', 'QcController@LogQc');
        $router->get('/detailQcUbah', 'QcController@detailQcUbah');
        $router->get('/status', 'QcController@status');
        $router->get('/reportQC', 'QcController@report');
        $router->get('/getQCMerchantCm', 'InputQcController@getDataQCMerchant');
        $router->get('/getDetailQCMerchant', 'InputQcController@getDetailQCMerchant');
        $router->post('/inputQC', 'InputQcController@InputQCMerchant');
        $router->post('/approveQC', 'InputQcController@AproveQCMerchant');
        $router->post('/rejectQC', 'InputQcController@RejectQCMerchant');
        $router->post('/deleteQC', 'InputQcController@DeleteQCMerchant');
        $router->post('/updateStatusInterface', 'InputQcController@updateInterfaceStatus');
        $router->post('/processInterface', 'InputQcController@interfaceProcess');
    }
);
Editor is loading...