phpvms/app/Widgets/LatestPireps.php

31 lines
602 B
PHP
Raw Normal View History

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