api.php 758 Bytes
Newer Older
Phạm Văn Đoan committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<?php

use Illuminate\Http\Request;

/*
|--------------------------------------------------------------------------
| API Routes
|--------------------------------------------------------------------------
|
| Here is where you can register API routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| is assigned the "api" middleware group. Enjoy building your API!
|
*/

Route::middleware('auth:api')->get('/user', function (Request $request) {
    return $request->user();
});
19 20

Route::get('/get-nct-top100', 'Api\NctController@getNctTop100');
21
Route::get('/get-zing-top100', 'Api\NctController@getZingTop100');
22
Route::get('/get-listen-history-by-date', 'Api\ListenHistoryController@getListenHistoryByDate');