<?php

namespace App\View\Components;

use Illuminate\View\Component;

class DeleteConfirmationModal extends Component
{
    public $id;
    public $action;
    public $name;

    public function __construct($id, $action, $name = 'item')
    {
        $this->id = $id;
        $this->action = $action;
        $this->name = $name;
    }

    public function render()
    {
        return view('components.delete-confirmation-modal');
    }
}
