From 0df73839bf7230b5c3cb5f240f062bd52cf4c85c Mon Sep 17 00:00:00 2001 From: cmz Date: Thu, 26 Sep 2024 21:27:06 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B4=B7=E6=AC=BE=E6=A8=A1=E5=9D=97=E6=96=B0?= =?UTF-8?q?=E5=A2=9E=E4=BF=AE=E6=94=B9=E6=8E=A8=E9=80=81=E7=8A=B6=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Admin/Controllers/LoanStudentsListController.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/Admin/Controllers/LoanStudentsListController.php b/app/Admin/Controllers/LoanStudentsListController.php index 661c4a1..31457cb 100644 --- a/app/Admin/Controllers/LoanStudentsListController.php +++ b/app/Admin/Controllers/LoanStudentsListController.php @@ -136,6 +136,10 @@ class LoanStudentsListController extends AdminController LoanStudentsList::IS_FIVE_YEAR_YES => "是", LoanStudentsList::IS_FIVE_YEAR_NO => "否" ])->required(); + $form->select('is_push')->options([ + LoanStudentsList:: IS_PUSH_NO => "未推送", + LoanStudentsList::IS_PUSH_YES => "已推送" + ])->required(); $form->number('total')->required(); $form->hidden("annual_session");