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' => 'Créer :label',
'breadcrumb' => 'Créer',
'form' => [
'actions' => [
'cancel' => [
'label' => 'Annuler',
],
'create' => [
'label' => 'Créer',
],
'create_another' => [
'label' => 'Créer & Ajouter un autre',
],
],
],
'notifications' => [
'created' => [
'title' => 'Créé(e)',
],
],
];
@@ -0,0 +1,43 @@
<?php
return [
'title' => 'Modifier :label',
'breadcrumb' => 'Modifier',
'navigation_label' => 'Modifier',
'form' => [
'actions' => [
'cancel' => [
'label' => 'Annuler',
],
'save' => [
'label' => 'Sauvegarder les modifications',
],
],
],
'content' => [
'tab' => [
'label' => 'Modifier',
],
],
'notifications' => [
'saved' => [
'title' => 'Sauvegardé',
],
],
];
@@ -0,0 +1,7 @@
<?php
return [
'breadcrumb' => 'Liste',
];
@@ -0,0 +1,7 @@
<?php
return [
'title' => 'Gérer les :relationship de :label',
];
@@ -0,0 +1,19 @@
<?php
return [
'title' => 'Afficher :label',
'breadcrumb' => 'Afficher',
'navigation_label' => 'Afficher',
'content' => [
'tab' => [
'label' => 'Afficher',
],
],
];