phpvms/resources/stubs/widgets/widget_plain.stub
2019-08-02 09:02:23 -04:00

22 lines
312 B
Plaintext

<?php
namespace {{namespace}};
use App\Contracts\Widget;
/**
* Class {{class}}
* @package {{namespace}}
*/
class {{class}} extends Widget
{
/**
* Treat this method as a controller action.
* Return view() or other content to display.
*/
public function run()
{
//
}
}