소스 검색

20220831 fix insert data function

LuluFJ.Ho 2 년 전
부모
커밋
e5b3e4db69
1개의 변경된 파일15개의 추가작업 그리고 0개의 파일을 삭제
  1. 15
    0
      config/response-message.php

+ 15
- 0
config/response-message.php 파일 보기

1
+<?php
2
+
3
+return [
4
+    'login_failed'        => '帳密有誤',
5
+    'authenticate_failed' => '無權限請登入',
6
+    'authorize_failed'    => '授權失敗',
7
+    
8
+    'not_found'           => '查無資料',
9
+    'router_failed'       => '請輸入有效網址',
10
+    'sql_error'           => '資料庫異常',
11
+    'validation_failed'   => '輸入資料驗證失敗',
12
+    'server_error'        => '伺服器錯誤',
13
+    'create_fail'         => '新增失敗',
14
+    'update_fail'         => '更新失敗',
15
+];