Advertisement
Guest User

ArticlesController.php

a guest
Oct 17th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. <?php
  2.     namespace App\Http\Controllers;
  3.  
  4.     use App\Article;
  5.     use Illuminate\Http\Request;
  6.  
  7.     class ArticlesController extends Controller
  8.     {
  9.         public function index()
  10.     {
  11.         return view('pages.news');
  12.         }
  13.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement