Play.php 370 B

123456789101112131415161718
  1. <?php
  2. namespace App\Admin\Actions\Device;
  3. use Encore\Admin\Actions\RowAction;
  4. use Illuminate\Database\Eloquent\Model;
  5. class Play extends RowAction
  6. {
  7. public $name = '<span class="text-danger">查看监控直播</span>';
  8. public function href()
  9. {
  10. // dump($this);die;
  11. return "/admin/play?serial_number={$this->row()->serial_number}";
  12. }
  13. }