phpvms/app/Interfaces/Widget.php
2018-03-19 20:50:40 -05:00

26 lines
481 B
PHP

<?php
namespace App\Interfaces;
use Arrilot\Widgets\AbstractWidget;
/**
* Class Widget
* @package App\Widgets
*/
abstract class Widget extends AbstractWidget
{
public $cacheTime = 0;
/**
* Render the template
* @param string $template
* @param array $vars
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
*/
public function view(string $template, array $vars = [])
{
return view($template, $vars);
}
}