for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Imanghafoori\Widgets;
use Illuminate\Contracts\Support\Htmlable;
use Illuminate\Contracts\Support\Renderable;
class Widget implements Renderable, Htmlable
{
/**
* Get content as a string of HTML.
*
* @return string
*/
public function toHtml()
// TODO: Implement toHtml() method.
}
* Get the evaluated contents of the object.
public function render()