Last active
May 2, 2018 09:37
-
-
Save MrAtiebatie/508435c2a396709a01c6209387f7bbfb to your computer and use it in GitHub Desktop.
routes/api.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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(); | |
}); | |
Route::middleware('auth:api')->post('/broadcast/auth', 'Api\BroadcastAuthController@auth'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment