feat: add routes, lang, tests, stubs, docs, and docker configurations

This commit is contained in:
2026-05-21 16:05:16 +07:00
parent fad70d096b
commit 28a06315b8
3385 changed files with 177070 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'uploading_file' => '파일 업로드 ...',
],
];
+9
View File
@@ -0,0 +1,9 @@
<?php
return [
'messages' => [
'copied' => '복사 완료',
],
];
+13
View File
@@ -0,0 +1,13 @@
<?php
return [
'actions' => [
'close' => [
'label' => '닫기',
],
],
];
+47
View File
@@ -0,0 +1,47 @@
<?php
return [
'label' => '페이지 탐색',
'overview' => ':total 건 중 :first 건부터 :last 건까지 보기',
'fields' => [
'records_per_page' => [
'label' => '페이지 당',
'options' => [
'all' => '전체',
],
],
],
'actions' => [
'first' => [
'label' => '첫 페이지',
],
'go_to_page' => [
'label' => ':page 페이지로 이동',
],
'last' => [
'label' => '마지막 페이지',
],
'next' => [
'label' => '다음',
],
'previous' => [
'label' => '이전',
],
],
];