| 12345678910111213141516171819202122232425262728 |
- <?php
- namespace Dcat\Admin\Grid\Actions;
- use Dcat\Admin\Grid\RowAction;
- class Edit extends RowAction
- {
- /**
- * @return array|null|string
- */
- public function title()
- {
- if ($this->title) {
- return $this->title;
- }
- return '<i class="feather icon-edit-1"></i> '.__('admin.edit');
- }
- /**
- * @return string
- */
- public function href()
- {
- return $this->parent->getEditUrl($this->getKey());
- }
- }
|