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' => 'Buat :label',
'breadcrumb' => 'Buat',
'form' => [
'actions' => [
'cancel' => [
'label' => 'Batal',
],
'create' => [
'label' => 'Buat',
],
'create_another' => [
'label' => 'Buat & buat lainnya',
],
],
],
'notifications' => [
'created' => [
'title' => 'Data berhasil dibuat',
],
],
];
@@ -0,0 +1,43 @@
<?php
return [
'title' => 'Ubah :label',
'breadcrumb' => 'Ubah',
'navigation_label' => 'Ubah',
'form' => [
'actions' => [
'cancel' => [
'label' => 'Batal',
],
'save' => [
'label' => 'Simpan',
],
],
],
'content' => [
'tab' => [
'label' => 'Ubah',
],
],
'notifications' => [
'saved' => [
'title' => 'Data berhasil disimpan',
],
],
];
@@ -0,0 +1,7 @@
<?php
return [
'breadcrumb' => 'Daftar',
];
@@ -0,0 +1,7 @@
<?php
return [
'title' => 'Manage :label :relationship',
];
@@ -0,0 +1,19 @@
<?php
return [
'title' => 'Lihat :label',
'breadcrumb' => 'Lihat',
'navigation_label' => 'Lihat',
'content' => [
'tab' => [
'label' => 'Lihat',
],
],
];