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' => 'Създаване на :label',
'breadcrumb' => 'Създаване',
'form' => [
'actions' => [
'cancel' => [
'label' => 'Отказ',
],
'create' => [
'label' => 'Създай',
],
'create_another' => [
'label' => 'Създай и добави друг',
],
],
],
'notifications' => [
'created' => [
'title' => 'Създадено',
],
],
];
@@ -0,0 +1,41 @@
<?php
return [
'title' => 'Редакция на :label',
'breadcrumb' => 'Редакция',
'form' => [
'actions' => [
'cancel' => [
'label' => 'Отказ',
],
'save' => [
'label' => 'Запази',
],
],
],
'content' => [
'tab' => [
'label' => 'Редакция',
],
],
'notifications' => [
'saved' => [
'title' => 'Запазено',
],
],
];
@@ -0,0 +1,7 @@
<?php
return [
'breadcrumb' => 'Списък',
];
@@ -0,0 +1,17 @@
<?php
return [
'title' => 'Преглед на :label',
'breadcrumb' => 'Преглед',
'content' => [
'tab' => [
'label' => 'Детайли',
],
],
];