coolify/app/View/Components/Modal.php

34 lines
764 B
PHP
Raw Normal View History

2023-07-13 13:16:24 +02:00
<?php
namespace App\View\Components;
use Closure;
use Illuminate\Contracts\View\View;
use Illuminate\View\Component;
class Modal extends Component
{
/**
* Create a new component instance.
*/
public function __construct(
public string $modalId,
2023-08-07 18:46:40 +02:00
public string|null $modalTitle = null,
2023-07-13 13:16:24 +02:00
public string|null $modalBody = null,
public string|null $modalSubmit = null,
public bool $noSubmit = false,
public bool $yesOrNo = false,
public string $action = 'delete'
2023-08-11 20:48:52 +02:00
) {
2023-07-13 13:16:24 +02:00
//
}
/**
* Get the view / contents that represent the component.
*/
public function render(): View|Closure|string
{
return view('components.modal');
}
}