Subversion-Projekte lars-tiefland.laravel_shop

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1666 lars 1
<?php
2
 
3
namespace {{ namespace }};
4
 
5
use Illuminate\Bus\Queueable;
6
use Illuminate\Contracts\Queue\ShouldQueue;
7
use Illuminate\Notifications\Messages\MailMessage;
8
use Illuminate\Notifications\Notification;
9
 
10
class {{ class }} extends Notification
11
{
12
    use Queueable;
13
 
14
    /**
15
     * Create a new notification instance.
16
     *
17
     * @return void
18
     */
19
    public function __construct()
20
    {
21
        //
22
    }
23
 
24
    /**
25
     * Get the notification's delivery channels.
26
     *
27
     * @param  mixed  $notifiable
28
     * @return array
29
     */
30
    public function via($notifiable)
31
    {
32
        return ['mail'];
33
    }
34
 
35
    /**
36
     * Get the mail representation of the notification.
37
     *
38
     * @param  mixed  $notifiable
39
     * @return \Illuminate\Notifications\Messages\MailMessage
40
     */
41
    public function toMail($notifiable)
42
    {
43
        return (new MailMessage)->markdown('{{ view }}');
44
    }
45
 
46
    /**
47
     * Get the array representation of the notification.
48
     *
49
     * @param  mixed  $notifiable
50
     * @return array
51
     */
52
    public function toArray($notifiable)
53
    {
54
        return [
55
            //
56
        ];
57
    }
58
}