<?php

namespace App\Notifications;

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

class TelechargerFichier extends Notification
{
    use Queueable;

    protected $notification;
    protected $fichier_id;

    /**
     * Create a new notification instance.
     *
     * @return void
     */
    public function __construct($notification, $fichier_id)
    {
        $this->notification = $notification;
        $this->fichier_id = $fichier_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,
            'fichier_id' => $this->fichier_id
        ];
    }
}
