<?php

namespace App\Notifications\Import;

use Illuminate\Bus\Queueable;
use Illuminate\Notifications\Notification;

class ImportNotification extends Notification
{
    use Queueable;

    private $_message;

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

    /**
     * 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->_message
        ];
    }
}
