Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Walter Felipe
submeta
Commits
d7a3dc68
Commit
d7a3dc68
authored
Apr 09, 2022
by
Guilherme Silva
Browse files
Adicionado envio de email ao avaliador externo com o formulário de avaliação
parent
0436bbd1
Changes
2
Hide whitespace changes
Inline
Side-by-side
app/Http/Controllers/AdministradorController.php
View file @
d7a3dc68
...
...
@@ -32,6 +32,8 @@ use App\Mail\EmailLembrete;
use
Illuminate\Pagination\Paginator
;
use
Illuminate\Support\Collection
;
use
Illuminate\Pagination\LengthAwarePaginator
;
use
Illuminate\Support\Facades\Notification
;
use
App\Notifications\AtribuicaoAvaliadorExternoNotification
;
class
AdministradorController
extends
Controller
{
...
...
@@ -147,8 +149,6 @@ class AdministradorController extends Controller
$trabalhos
=
$trabalhos
->
sort
(
function
(
$item
,
$next
)
{
return
$item
->
pontuacao
>=
$next
->
pontuacao
?
-
1
:
1
;
});
$trabalhos
=
$this
->
paginate
(
$trabalhos
)
->
withPath
(
'/usuarios/showResultados?evento_id='
.
$evento
->
id
);;
return
view
(
'administrador.resultadosProjetos'
)
->
with
([
'evento'
=>
$evento
,
'trabalhos'
=>
$trabalhos
]);
}
...
...
@@ -575,6 +575,9 @@ class AdministradorController extends Controller
$trabalho
->
save
();
foreach
(
$avaliadores
as
$avaliador
){
$userTemp
=
User
::
find
(
$avaliador
->
user
->
id
);
$notificacao
=
Notificacao
::
create
([
'remetente_id'
=>
Auth
::
user
()
->
id
,
'destinatario_id'
=>
$avaliador
->
user_id
,
...
...
@@ -583,6 +586,9 @@ class AdministradorController extends Controller
'tipo'
=>
5
,
]);
$notificacao
->
save
();
if
(
$avaliador
->
tipo
==
"Externo"
){
Notification
::
send
(
$userTemp
,
new
AtribuicaoAvaliadorExternoNotification
(
$userTemp
,
$trabalho
));
}
}
...
...
app/Notifications/AtribuicaoAvaliadorExternoNotification.php
0 → 100644
View file @
d7a3dc68
<?php
namespace
App\Notifications
;
use
Illuminate\Bus\Queueable
;
use
Illuminate\Support\Facades\Auth
;
use
Illuminate\Notifications\Notification
;
use
Illuminate\Contracts\Queue\ShouldQueue
;
use
Illuminate\Notifications\Messages\MailMessage
;
class
AtribuicaoAvaliadorExternoNotification
extends
Notification
{
use
Queueable
;
public
$data
;
public
$url
;
/**
* Create a new notification instance.
*
* @return void
*/
public
function
__construct
(
$usuario
,
$trabalho
)
{
$this
->
data
=
date
(
'd/m/Y \à\s H:i\h'
,
strtotime
(
now
()));
$url
=
"/avaliador/editais"
;
$this
->
url
=
url
(
$url
);
$this
->
user
=
$usuario
;
$this
->
titulo
=
$trabalho
->
titulo
;
$this
->
trabalho
=
$trabalho
;
}
/**
* Get the notification's delivery channels.
*
* @param mixed $notifiable
* @return array
*/
public
function
via
(
$notifiable
)
{
return
[
'mail'
];
}
/**
* Get the mail representation of the notification.
*
* @param mixed $notifiable
* @return \Illuminate\Notifications\Messages\MailMessage
*/
public
function
toMail
(
$notifiable
)
{
return
(
new
MailMessage
)
->
subject
(
'Sistema Submeta - Avaliar proposta / projeto'
)
->
greeting
(
"Saudações!"
)
->
line
(
"Prezado avaliador, você foi convidado a avaliar a proposta / projeto intitulada(o)
{
$this
->
titulo
}
."
)
->
action
(
'Acessar'
,
$this
->
url
)
->
attach
(
storage_path
()
.
"/app/pdfFormAvalExterno/
{
$this
->
trabalho
->
evento_id
}
/formulario de avaliação externo.pdf"
)
->
markdown
(
'vendor.notifications.email'
);
}
/**
* Get the array representation of the notification.
*
* @param mixed $notifiable
* @return array
*/
public
function
toArray
(
$notifiable
)
{
return
[
//
];
}
}
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