ソースを参照

wesmiler 报恩寺项目提交

wesmiler 4 年 前
コミット
814d963f44
1 ファイル変更2 行追加1 行削除
  1. 2 1
      app/Http/Controllers/CardController.php

+ 2 - 1
app/Http/Controllers/CardController.php

@@ -12,6 +12,7 @@
 namespace App\Http\Controllers;
 
 use App\Services\ArticleService;
+use App\Services\CardService;
 
 /**
  * 卡管理-控制器
@@ -31,6 +32,6 @@ class CardController extends Backend
     public function __construct()
     {
         parent::__construct();
-        $this->service = new ArticleService();
+        $this->service = new CardService();
     }
 }