phpvms/app/Widgets/LatestNews.php

30 lines
567 B
PHP
Raw Normal View History

<?php
namespace App\Widgets;
use App\Contracts\Widget;
use App\Repositories\NewsRepository;
2018-02-21 12:33:09 +08:00
/**
* Show the latest news in a view
*/
class LatestNews extends Widget
{
protected $config = [
'count' => 5,
];
/**
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
*/
public function run()
{
$newsRepo = app(NewsRepository::class);
return view('widgets.latest_news', [
'config' => $this->config,
'news' => $newsRepo->recent($this->config['count']),
]);
}
}