Created
March 8, 2018 02:33
-
-
Save jsdecena/7b4e9128e75d3e5824f521d3948d0c73 to your computer and use it in GitHub Desktop.
Articles Api Controller Class
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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