Files
spa-api/routes/api.php

22 lines
528 B
PHP
Raw Normal View History

2016-07-14 09:36:17 -05:00
<?php
use Illuminate\Support\Facades\Route;
2016-07-14 09:36:17 -05:00
/*
|--------------------------------------------------------------------------
| 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',
2016-07-14 10:36:36 -04:00
'middleware' => 'auth:api',
2016-07-14 09:36:17 -05:00
], function () {
//
});