for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Encore\Admin\Grid\Selectable;
use Illuminate\Contracts\Support\Renderable;
class BrowserBtn implements Renderable
{
public function render()
$text = admin_trans('admin.choose');
$html = <<<HTML
<a href="javascript:void(0)" class="btn btn-primary btn-sm pull-left select-relation">
<i class="glyphicon glyphicon-folder-open"></i>
{$text}
</a>
HTML;
return $html;
}