SiteAlbumLogController.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. namespace App\Admin\Controllers;
  3. use App\Models\SiteAlbumLog;
  4. use Dcat\Admin\Form;
  5. use Dcat\Admin\Grid;
  6. use Dcat\Admin\Show;
  7. use Dcat\Admin\Http\Controllers\AdminController;
  8. use Dcat\Admin\Layout\Content;
  9. use Dcat\Admin\Admin;
  10. class SiteAlbumLogController extends AdminController
  11. {
  12. /**
  13. * page index
  14. */
  15. public function index(Content $content)
  16. {
  17. return $content
  18. ->header('列表')
  19. ->description('全部')
  20. ->breadcrumb(['text'=>'列表','url'=>''])
  21. ->body($this->grid());
  22. }
  23. /**
  24. * Make a grid builder.
  25. *
  26. * @return Grid
  27. */
  28. protected function grid()
  29. {
  30. return Grid::make(new SiteAlbumLog(), function (Grid $grid) {
  31. $grid->column('id')->sortable();
  32. $grid->column('user_name');
  33. $grid->column('action');
  34. $grid->column('model');
  35. $grid->column('content')->display(function ($value) {
  36. return $value;
  37. });
  38. $grid->column('created_at');
  39. $grid->column('updated_at')->sortable();
  40. //搜索
  41. $grid->filter(function (Grid\Filter $filter) {
  42. $filter->panel();
  43. $filter->expand();
  44. $filter->equal('user_name')->width(2);
  45. $filter->equal('model')->width(2);
  46. });
  47. //按钮
  48. $grid->disableCreateButton();
  49. $grid->disableDeleteButton();
  50. $grid->disableEditButton();
  51. $grid->disableActions();
  52. $grid->model()->orderBy('id', 'desc');
  53. });
  54. }
  55. /**
  56. * Make a show builder.
  57. *
  58. * @param mixed $id
  59. *
  60. * @return Show
  61. */
  62. protected function detail($id)
  63. {
  64. return Show::make($id, new SiteAlbumLog(), function (Show $show) {
  65. $show->field('id');
  66. $show->field('user_name');
  67. $show->field('action');
  68. $show->field('model');
  69. $show->field('content');
  70. $show->field('created_at');
  71. $show->field('updated_at');
  72. });
  73. }
  74. }