Box.php 270 B

1234567891011121314151617
  1. <?php
  2. namespace App\Admin\Actions\Device;
  3. use Encore\Admin\Actions\RowAction;
  4. class Box extends RowAction
  5. {
  6. public $name = '设备盒子';
  7. public function href()
  8. {
  9. $id = $this->row->id;
  10. return '/admin/device_box?device_id='.$id;
  11. }
  12. }