test ticket create account id notification test
This commit is contained in:
parent
f4b0dc4a82
commit
a1e0563f5b
|
|
@ -40,10 +40,7 @@ public function via($notifiable)
|
|||
*/
|
||||
public function toMail($notifiable)
|
||||
{
|
||||
return (new MailMessage)
|
||||
->from(config('settings.smtp_username'), env('MAIL_FROM_NAME', 'Birzha legalizasia'))
|
||||
->greeting('Hello!')
|
||||
->line('Your application has been approved!');
|
||||
return (new MailMessage)->view('emails.notifications.application_approved');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ public function via($notifiable)
|
|||
*/
|
||||
public function toMail($notifiable)
|
||||
{
|
||||
return (new MailMessage)->view('emails.notifications.application_approved');
|
||||
return (new MailMessage)->view('emails.notifications.application_refined');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -40,9 +40,7 @@ public function via($notifiable)
|
|||
*/
|
||||
public function toMail($notifiable)
|
||||
{
|
||||
return (new MailMessage)
|
||||
->from(config('settings.smtp_username'), env('MAIL_FROM_NAME', 'Birzha legalizasia'))
|
||||
->view('emails.notifications.new_message');
|
||||
return (new MailMessage)->view('emails.notifications.new_message');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -40,9 +40,7 @@ public function via($notifiable)
|
|||
*/
|
||||
public function toMail($notifiable)
|
||||
{
|
||||
return (new MailMessage)
|
||||
->from(config('settings.smtp_username'), env('MAIL_FROM_NAME', 'Birzha legalizasia'))
|
||||
->view('emails.notifications.new_ticket');
|
||||
return (new MailMessage)->view('emails.notifications.new_ticket');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -157,7 +157,7 @@ class="bi bi-ticket-perforated" viewBox="0 0 16 16">
|
|||
<form method="post" action="{{backpack_url('create-application-ticket')}}" method="POST">
|
||||
@csrf
|
||||
<input type="hidden" name="application_id" value="{{ $application->id }}">
|
||||
<input type="hidden" name="client_id" value={{ $application->account_id }}>
|
||||
<input type="hidden" name="account_id" value={{ $application->account_id }}>
|
||||
<input type="hidden" name="status_id" value="1">
|
||||
<input type="hidden" name="category_id" value="2">
|
||||
<input type="hidden" name="last_sender" value="admin">
|
||||
|
|
|
|||
Loading…
Reference in New Issue