22 lines
362 B
PHP
22 lines
362 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
use App\Article;
|
|
|
|
class ArticlesController extends Controller
|
|
{
|
|
/**
|
|
* Show a single article
|
|
*
|
|
* @param mixed $article
|
|
*/
|
|
public function show(Article $article)
|
|
{
|
|
return view('articles.show', [
|
|
'article' => $article
|
|
]);
|
|
}
|
|
}
|