Commit 5cd0b6ab authored by Marcos Albano's avatar Marcos Albano 💬

Adicionada pagina de agendamentoContato

parent 83be8594
...@@ -4,50 +4,36 @@ ...@@ -4,50 +4,36 @@
@page(['col'=>12, 'page'=>__('agendamento.create_crud', ['page'=>$page_create])]) @page(['col'=>12, 'page'=>__('agendamento.create_crud', ['page'=>$page_create])])
@alert(['msg' => session('msg'), 'status' => session('status')]) @alert(['msg' => session('msg'), 'status' => session('status')])
@endalert @endalert
@breadcrumb(['page'=>$page,'items'=>$breadcrumb ?? []])
@endbreadcrumb
<fieldset class="fielAgendamentoTitulo">
@form(['action'=>route('agendamentoTituloEntrega'), 'method'=>'POST'])
<button class="button_tituloEvento" onclick="window.location = '{{route('agendamentoTituloEntrega')}}'">@lang('agendamento.receber_titulo_evento')</button>
@endform
@form(['action'=>route('agendamentoTituloSede'), 'method'=>'POST'])
<button class="button_tituloSede" onclick="window.location = '{{route('agendamentoTituloSede')}}'">@lang('agendamento.receber_titulo_sede')</button>
@endform
</fieldset>
<fieldset class="nomeUsuario"> @breadcrumb(['page'=>$page,'items'=>$breadcrumb ?? []])
<div> @endbreadcrumb
<input type="text" id="getnome" name="getnome" placeholder="Nome do Usuário">
<input type="text" id="getcpf" name="getcpf" placeholder="Numero CPF usuário"> @form(['action'=>route($routeName.'.store'),'method'=>'POST'])
</div>
</fieldset>
<h1 class="menuh1">Agendamento <span class="idaceFonte">IDACE</span></h1> <h1 class="menuh1">Agendamento <span class="idaceFonte">IDACE</span></h1>
<fieldset class="fieldContatos"> <fieldset class="fieldContatos">
<p id="contato"><span class="idaceFonte">Contato</span></p> <p id="contato"><span class="idaceFonte">Contato</span></p>
</fieldset> </fieldset>
<fieldset class="fieldbarraContato"> <fieldset class="fieldbarraContato">
<p class="barraContato"><span class="idaceFonte"><img id="whatsappContatos" src="imagem/contato_Whatsapp.png"> <p class="barraContato"><span class="idaceFonte"><img id="whatsappContatos" src="imagem/contato_Whatsapp.png">
Whatsapp</span> (085) 90000-0000</p> Whatsapp</span> (085) 90000-0000</p>
</fieldset> </fieldset>
<fieldset class="fieldbarraContato"> <fieldset class="fieldbarraContato">
<p class="barraContato"><span class="idaceFonte"><img id="telefoneContatos" src="imagem/contato_Telefone.png"> <p class="barraContato"><span class="idaceFonte"><img id="telefoneContatos" src="imagem/contato_Telefone.png">
Telefone</span> (085) 3474-9101</p> Telefone</span> (085) 3474-9101</p>
</fieldset> </fieldset>
<fieldset class="fieldbarraContato">
<p class="barraContato"><span class="idaceFonte"><img id="emailContatos" src="imagem/contato_email.png">
E-mail</span> idace@gov.ce.gov.br</p>
</fieldset>
<fieldset class="fieldbarraContato">
<p class="barraContato"><span class="idaceFonte"><img id="emailContatos" src="imagem/contato_email.png">
E-mail</span> idace@gov.ce.gov.br</p>
</fieldset>
@endform
@endpage @endpage
@endsection @endsection
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
</fieldset> </fieldset>
<fieldset class="fielmenuAgendamento-1"> <fieldset class="fielmenuAgendamento-1">
<div style="cursor: pointer" onclick="window.location = '{{route('roles.index')}}'" class="button_meusAgendamento"> <div style="cursor: pointer" onclick="window.location = '{{route('agendamentos.index')}}'" class="button_meusAgendamento">
<div class="card-body"> <div class="card-body">
<p class="card-text">@lang('agendamento.meus_agendamentos')</p> <p class="card-text">@lang('agendamento.meus_agendamentos')</p>
<p><img id="idace2" src="img/Eventos.png"></p> <p><img id="idace2" src="img/Eventos.png"></p>
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
</div> </div>
</fieldset> </fieldset>
<fieldset class="fielmenuAgendamento-2"> <fieldset class="fielmenuAgendamento-2">
<div style="cursor: pointer" onclick="window.location = '{{route('agendamentos.index')}}'" class="button_contato"> <div style="cursor: pointer" onclick="window.location = '{{route('agendamentoContato')}}'" class="button_contato">
<div class="card-body"> <div class="card-body">
<p class="card-text">@lang('agendamento.contato')</p> <p class="card-text">@lang('agendamento.contato')</p>
<p><img id="idace4" src="img/Contato.png"></p> <p><img id="idace4" src="img/Contato.png"></p>
......
...@@ -67,7 +67,9 @@ Route::any('/agendamentoTitulo', function () { ...@@ -67,7 +67,9 @@ Route::any('/agendamentoTitulo', function () {
(object) ['url' => route($routeName . '.index'), 'title' => trans('agendamento.list', ['page' => $page])], (object) ['url' => route($routeName . '.index'), 'title' => trans('agendamento.list', ['page' => $page])],
(object) ['url' => '', 'title' => trans('agendamento.create_crud', ['page' => $page_create])], (object) ['url' => '', 'title' => trans('agendamento.create_crud', ['page' => $page_create])],
]; ];
return view('admin.' . $routeName . '.agendamentoTitulo', ['page' => $page, 'page_create' => $page_create, 'routeName' => $routeName, 'breadcrumb' => $breadcrumb]); return view('admin.' . $routeName . '.agendamentoTitulo', ['page' => $page, 'page_create' => $page_create, 'routeName' => $routeName, 'breadcrumb' => $breadcrumb]);
})->name('agendamentoTitulo'); })->name('agendamentoTitulo');
...@@ -81,7 +83,9 @@ Route::any('/agendamentoTituloEntrega', function () { ...@@ -81,7 +83,9 @@ Route::any('/agendamentoTituloEntrega', function () {
(object) ['url' => route($routeName . '.index'), 'title' => trans('agendamento.list', ['page' => $page])], (object) ['url' => route($routeName . '.index'), 'title' => trans('agendamento.list', ['page' => $page])],
(object) ['url' => '', 'title' => trans('agendamento.create_crud', ['page' => $page_create])], (object) ['url' => '', 'title' => trans('agendamento.create_crud', ['page' => $page_create])],
]; ];
return view('admin.' . $routeName . '.agendamentoTituloEntrega', ['page' => $page, 'page_create' => $page_create, 'routeName' => $routeName, 'breadcrumb' => $breadcrumb]); return view('admin.' . $routeName . '.agendamentoTituloEntrega', ['page' => $page, 'page_create' => $page_create, 'routeName' => $routeName, 'breadcrumb' => $breadcrumb]);
})->name('agendamentoTituloEntrega'); })->name('agendamentoTituloEntrega');
...@@ -95,6 +99,23 @@ Route::any('/agendamentoTituloSede', function () { ...@@ -95,6 +99,23 @@ Route::any('/agendamentoTituloSede', function () {
(object) ['url' => route($routeName . '.index'), 'title' => trans('agendamento.list', ['page' => $page])], (object) ['url' => route($routeName . '.index'), 'title' => trans('agendamento.list', ['page' => $page])],
(object) ['url' => '', 'title' => trans('agendamento.create_crud', ['page' => $page_create])], (object) ['url' => '', 'title' => trans('agendamento.create_crud', ['page' => $page_create])],
]; ];
return view('admin.' . $routeName . '.agendamentoTituloSede', ['page' => $page, 'page_create' => $page_create, 'routeName' => $routeName, 'breadcrumb' => $breadcrumb]); return view('admin.' . $routeName . '.agendamentoTituloSede', ['page' => $page, 'page_create' => $page_create, 'routeName' => $routeName, 'breadcrumb' => $breadcrumb]);
})->name('agendamentoTituloSede'); })->name('agendamentoTituloSede');
Route::any('/agendamentoContato', 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 . '.agendamentoContato', ['page' => $page, 'page_create' => $page_create, 'routeName' => $routeName, 'breadcrumb' => $breadcrumb]);
})->name('agendamentoContato');
//->middleware('auth') //->middleware('auth')
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment