Tweak location of routes files.

This commit is contained in:
Taylor Otwell
2016-07-14 09:36:17 -05:00
parent 2b05ce3b05
commit 7ec26ce916
3 changed files with 39 additions and 2 deletions

19
routes/api.php Normal file
View File

@@ -0,0 +1,19 @@
<?php
/*
|--------------------------------------------------------------------------
| 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::group([
'prefix' => 'api',
'middleware' => 'auth:api'
], function () {
//
});