###gridにボタンを追加する
下記のようにURLを指定することで、別のController等へ直接リンクを張ることが出来る。
protected function grid()
{
$grid = new Grid(new YourModel);
$grid->id('ID')->sortable();
$grid->created_at('Created at');
$grid->updated_at('Updated at');
//「操作」列にボタンの追加
$grid->actions(function ($actions) {
//form等のURLを指定する。
$actions->prepend('<a href="/admin/testform/'.$actions->getKey().'/edit"><button type="button" class="btn btn-primary btn-xs">テストボタン</button></a></br>');
});
return $grid;
}