Skip to content

Instantly share code, notes, and snippets.

@jsdecena
Created March 8, 2018 02:33
Show Gist options
  • Save jsdecena/7b4e9128e75d3e5824f521d3948d0c73 to your computer and use it in GitHub Desktop.
Save jsdecena/7b4e9128e75d3e5824f521d3948d0c73 to your computer and use it in GitHub Desktop.
Articles Api Controller Class
<?php
namespace App\Http\Controllers\Api;
class ArticlesApiController extends Controller
{
public function store(CreateArticleRequest $request) {
dd('success!');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment