Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sisage
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Marcos Albano
sisage
Commits
0778bc46
Commit
0778bc46
authored
Jan 25, 2021
by
Marcos Vinicius Felix De Sousa da Silva
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://172.28.1.20/marcos.albano/sisage
parents
4d3fee0e
a916a3d8
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
58 additions
and
5 deletions
+58
-5
agendamento.php
resources/lang/pt-br/agendamento.php
+0
-1
agendamentoTituloSede.blade.php
.../views/admin/agendamentos/agendamentoTituloSede.blade.php
+9
-3
pesquisaTitulo.blade.php
resources/views/admin/agendamentos/pesquisaTitulo.blade.php
+33
-0
home.blade.php
resources/views/home.blade.php
+1
-1
web.php
routes/web.php
+15
-0
No files found.
resources/lang/pt-br/agendamento.php
View file @
0778bc46
...
...
@@ -56,7 +56,6 @@ return [
'agendar'
=>
'Agendar'
,
'meus_agendamentos'
=>
'Meus Agendamentos'
,
'entrega_titulos'
=>
'Entrega de Títulos'
,
'contato'
=>
'Contato'
,
'receber_titulo_evento'
=>
'Receber Título no Evento'
,
'receber_titulo_sede'
=>
'Receber Título na Sede'
,
];
\ No newline at end of file
resources/views/admin/agendamentos/agendamentoTituloSede.blade.php
View file @
0778bc46
...
...
@@ -17,11 +17,17 @@
<
fieldset
class
=
"calendario"
>
<
input
type
=
"date"
id
=
"data"
name
=
"dataAgendamento"
>
<
br
>
<
button
class
=
"enviarbtn"
onclick
=
"window.location = '
{
{route('agendamentoTituloSede')}
}
'"
>@
lang
(
'Próximo'
)
</
button
>
<
button
class
=
"enviarbtn"
onclick
=
"window.location = '{{ route('agendamentoTituloSede') }}'"
>@
lang
(
'agendamento.next'
)
</
button
>
</
fieldset
>
@
endform
@
endpage
@
endsection
resources/views/admin/agendamentos/pesquisaTitulo.blade.php
0 → 100644
View file @
0778bc46
@
extends
(
'layouts.app'
)
@
section
(
'content'
)
@
page
([
'col'
=>
12
,
'page'
=>
__
(
'agendamento.create_crud'
,
[
'page'
=>
$page_create
])])
@
alert
([
'msg'
=>
session
(
'msg'
),
'status'
=>
session
(
'status'
)])
@
endalert
@
breadcrumb
([
'page'
=>
$page
,
'items'
=>
$breadcrumb
??
[]])
@
endbreadcrumb
@
form
([
'action'
=>
route
(
'pesquisaTitulo'
),
'method'
=>
'POST'
])
@
csrf
<
h4
>
<
p
class
=
"text-center"
><
b
>
Pesquisa
de
Títulos
</
b
></
p
>
</
h4
>
{{
--
<
h3
class
=
"titulo"
>
Pesquisa
de
Títulos
</
h3
>
--
}}
<
div
class
=
"row"
>
<
div
class
=
"form-group"
>
<
input
type
=
"text"
class
=
"form-control label_cpf"
data
-
mask
=
"000.000.000-00"
name
=
"cpf"
placeholder
=
"000.000.000-00"
>
<
button
type
=
"submit"
class
=
"btn btn-block btn-primary btn_pesquisa"
>
Pesquisar
</
button
>
</
div
>
</
div
>
@
endform
@
endpage
@
endsection
resources/views/home.blade.php
View file @
0778bc46
...
...
@@ -21,7 +21,7 @@
<!--
formMenuAgedamento
-->
<
fieldset
class
=
"fielmenuAgendamento-1"
>
<
div
style
=
"cursor: pointer"
onclick
=
"window.location = '
{
{route('
agendamento
Titulo')}
}
'"
class
=
"button_agendar"
>
<
div
style
=
"cursor: pointer"
onclick
=
"window.location = '
{
{route('
pesquisa
Titulo')}
}
'"
class
=
"button_agendar"
>
<
div
class
=
"card-body"
>
<
p
class
=
"card-text"
>@
lang
(
'agendamento.agendar'
)
</
p
>
<
p
><
img
id
=
"idace1"
src
=
"img/icone agenda.png"
></
p
>
...
...
routes/web.php
View file @
0778bc46
...
...
@@ -118,4 +118,19 @@ Route::any('/agendamentoContato', function () {
return
view
(
'admin.'
.
$routeName
.
'.agendamentoContato'
,
[
'page'
=>
$page
,
'page_create'
=>
$page_create
,
'routeName'
=>
$routeName
,
'breadcrumb'
=>
$breadcrumb
]);
})
->
name
(
'agendamentoContato'
);
Route
::
any
(
'/pesquisaTitulo'
,
function
()
{
$routeName
=
'agendamentos'
;
$page
=
trans
(
'agendamento.agendamento_list'
);
$page_create
=
trans
(
'agendamento.agendamento'
);
$breadcrumb
=
[
(
object
)
[
'url'
=>
route
(
'home'
),
'title'
=>
trans
(
'agendamento.home'
)],
(
object
)
[
'url'
=>
route
(
$routeName
.
'.index'
),
'title'
=>
trans
(
'agendamento.list'
,
[
'page'
=>
$page
])],
(
object
)
[
'url'
=>
''
,
'title'
=>
trans
(
'agendamento.create_crud'
,
[
'page'
=>
$page_create
])],
];
return
view
(
'admin.'
.
$routeName
.
'.pesquisaTitulo'
,
[
'page'
=>
$page
,
'page_create'
=>
$page_create
,
'routeName'
=>
$routeName
,
'breadcrumb'
=>
$breadcrumb
]);
})
->
name
(
'pesquisaTitulo'
);
//->middleware('auth')
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment