소스 검색

版本恢复

moshaorui 4 달 전
부모
커밋
9d3d25be8e
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      app/Admin/Controllers/DistAppearanceController.php

+ 2 - 2
app/Admin/Controllers/DistAppearanceController.php

@@ -88,7 +88,7 @@ class DistAppearanceController extends AdminController
     protected function detail($id)
     {
         return Show::make($id, new DistAppearance(), function (Show $show) {
-            $show->field('id');
+            //$show->field('id');
             $show->field('title');
             $show->field('folder');
             $show->field('cover_image')->as(function ($image) {
@@ -113,7 +113,7 @@ class DistAppearanceController extends AdminController
     protected function form()
     {
         return Form::make(new DistAppearance(), function (Form $form) {
-            $form->display('id');
+            //$form->display('id');
             $form->text('title');
             $form->text('folder');
             $form->image("cover_image")