Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Http\Controllers;
  4.  
  5. use App\Article;
  6.  
  7. class ArticleController extends Controller
  8. {
  9.     public function index() {
  10.         $articles = Article::all();
  11.         return response()->json(['articles' => $articles]);
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement