Skip to content

Instantly share code, notes, and snippets.

@jsdecena
Created March 8, 2018 01:44
Show Gist options
  • Save jsdecena/2f9a3676b381e237425c104d3e88496d to your computer and use it in GitHub Desktop.
Save jsdecena/2f9a3676b381e237425c104d3e88496d to your computer and use it in GitHub Desktop.
Route File for API
<?php
use App\Http\Controllers\Api\ArticlesApiController;
use Illuminate\Support\Facades\Route;
Route::group(['prefix' => 'v1'], function () {
Route::resource('articles', ArticlesApiController::class);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment