﻿<?php

namespace App\Mail;

use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Mail\Mailables\Content;
use Illuminate\Mail\Mailables\Envelope;
use Illuminate\Queue\SerializesModels;
use App\Models\AppraisalReview;
use App\Models\Employee;

class PeerAddedMail extends Mailable
{
    use Queueable, SerializesModels;

    public $appraisalReview;
    public $peerEmployee;

    /**
     * Create a new message instance.
     */
    public function __construct(AppraisalReview $appraisalReview, Employee $peerEmployee)
    {
        $this->appraisalReview = $appraisalReview;
        $this->peerEmployee = $peerEmployee;
    }

    /**
     * Get the message envelope.
     */
    public function envelope(): Envelope
    {
        return new Envelope(
            subject: 'You Have Been Added as a Peer Reviewer',
        );
    }

    /**
     * Get the message content definition.
     */
    public function content(): Content
    {
        return new Content(
            view: 'email.peer_added',
            with: [
                'peerName' => $this->peerEmployee->name,
                'revieweeName' => optional($this->appraisalReview->employee)->name,
                'reviewLink' => route('appraisal_reviews.edit', $this->appraisalReview),
            ]
        );
    }

    /**
     * Get the attachments for the message.
     *
     * @return array<int, \Illuminate\Mail\Mailables\Attachment>
     */
    public function attachments(): array
    {
        return [];
    