Show.php
383 字节
<?php
namespace App\Admin\Rewrite\Grid\Actions;
use App\Admin\Rewrite\Actions\RowAction;
class Show extends RowAction
{
/**
* @return array|null|string
*/
public function name()
{
return __('admin.show');
}
/**
* @return string
*/
public function href()
{
return "{$this->getResource()}/{$this->getKey()}";
}
}