Skip to content

Instantly share code, notes, and snippets.

@pringgojs
Created October 22, 2018 14:53
Show Gist options
  • Save pringgojs/4e8102c5dca37733450c57eb062720c0 to your computer and use it in GitHub Desktop.
Save pringgojs/4e8102c5dca37733450c57eb062720c0 to your computer and use it in GitHub Desktop.
routing api
<?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::resource('blog', 'BlogController');
Route::get('/user', function (Request $request) {
return $request->user();
})->middleware('auth:api');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment