链街Dcat后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
447 B

  1. <?php
  2. namespace App\Admin\Actions\Lazy;
  3. use Dcat\Admin\Grid;
  4. use Dcat\Admin\Grid\LazyRenderable;
  5. class CsInfo extends LazyRenderable
  6. {
  7. public function grid(): Grid
  8. {
  9. return Grid::make(new \App\Admin\Repositories\v3\CsInfo(),function (Grid $grid){
  10. $grid->name;
  11. });
  12. }
  13. public function render()
  14. {
  15. dd($this->id);
  16. return parent::render(); // TODO: Change the autogenerated stub
  17. }
  18. }