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
@@ -0,0 +1,37 @@
<?php
return [
'title' => 'Tạo :label',
'breadcrumb' => 'Tạo',
'form' => [
'actions' => [
'cancel' => [
'label' => 'Hủy thao tác',
],
'create' => [
'label' => 'Tạo',
],
'create_another' => [
'label' => 'Tạo & tạo thêm',
],
],
],
'notifications' => [
'created' => [
'title' => 'Đã tạo',
],
],
];
@@ -0,0 +1,41 @@
<?php
return [
'title' => 'Chỉnh sửa :label',
'breadcrumb' => 'Chỉnh sửa',
'form' => [
'actions' => [
'cancel' => [
'label' => 'Hủy thao tác',
],
'save' => [
'label' => 'Lưu thay đổi',
],
],
],
'content' => [
'tab' => [
'label' => 'Chỉnh sửa',
],
],
'notifications' => [
'saved' => [
'title' => 'Đã lưu',
],
],
];
@@ -0,0 +1,7 @@
<?php
return [
'breadcrumb' => 'Danh sách',
];
@@ -0,0 +1,17 @@
<?php
return [
'title' => 'Xem :label',
'breadcrumb' => 'Xem',
'content' => [
'tab' => [
'label' => 'Xem',
],
],
];