<?php

namespace App\Notifications;

use App\Models\Alerte;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Notifications\Messages\MailMessage;
use Illuminate\Notifications\Notification;

class AlerteNotification extends Notification
{
    use Queueable;

    protected $notification;
    protected $projet_id;

    /**
     * Create a new notification instance.
     *
     * @return void
     */
    public function __construct($notification, $projet_id = null)
    {
        $this->notification = $notification;
        $this->projet_id = $projet_id;
    }

    /**
     * Get the notification's delivery channels.
     *
     * @param  mixed  $notifiable
     * @return array
     */
    public function via($notifiable)
    {
        return ['database'];
    }

    /**
     * Get the array representation of the notification.
     *
     * @param  mixed  $notifiable
     * @return array
     */
    public function toArray($notifiable)
    {
        return [
            'message' => $this->notification,
            'projet_id' => $this->projet_id
        ];
    }
}
