| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace UCore\DcatAdmin;
- use UCore\DcatAdmin\Traits\ReturnRes;
- use Illuminate\Http\Request;
- use Illuminate\Database\Eloquent\Model;
- use Dcat\Admin\Grid\RowAction as BaseRowAction;
- /**
- * 动作 , 详情页面
- *
- */
- class RowAction2 extends BaseRowAction
- {
- use ReturnRes;
- protected $model;
- public function __construct(string $model = null)
- {
- $this->model = $model;
- }
- /**
- * @return string
- */
- public function title(): string
- {
- return __($this->title);
- }
- public function confirm()
- {
- }
- }
|