feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Criar :label',
|
||||
|
||||
'breadcrumb' => 'Criar',
|
||||
|
||||
'form' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Cancelar',
|
||||
],
|
||||
|
||||
'create' => [
|
||||
'label' => 'Criar',
|
||||
],
|
||||
|
||||
'create_another' => [
|
||||
'label' => 'Salvar e criar outro',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'created' => [
|
||||
'title' => 'Criado',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Editar :label',
|
||||
|
||||
'breadcrumb' => 'Editar',
|
||||
|
||||
'navigation_label' => 'Editar',
|
||||
|
||||
'form' => [
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Cancelar',
|
||||
],
|
||||
|
||||
'save' => [
|
||||
'label' => 'Salvar alterações',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'content' => [
|
||||
|
||||
'tab' => [
|
||||
'label' => 'Editar',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'saved' => [
|
||||
'title' => 'Salvo',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'breadcrumb' => 'Listar',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Gerenciar :label :relationship',
|
||||
|
||||
];
|
||||
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Visualizar :label',
|
||||
|
||||
'breadcrumb' => 'Visualizar',
|
||||
|
||||
'navigation_label' => 'Visualizar',
|
||||
|
||||
'content' => [
|
||||
|
||||
'tab' => [
|
||||
'label' => 'Visualizar',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user