<?php
namespace {{namespace}}\ResourceTools;
use Laravel\Nova\ResourceTool;
class {{resourceTool}} extends ResourceTool
{
/**
* Get the displayable name of the resource tool.
*
* @return string
*/
public function name()
{
return 'Name of your Resource Tool';
}
/**
* Get the component name for the resource tool.
*
* @return string
*/
public function component()
{
return '{{uriKey}}';
}
}