feat: init postgresql database

This commit is contained in:
Andras Bacsai
2023-08-07 18:46:40 +02:00
parent 0a040a0531
commit a020bc872d
38 changed files with 430 additions and 66 deletions

View File

@@ -14,7 +14,7 @@ class Modal extends Component
*/
public function __construct(
public string $modalId,
public string $modalTitle,
public string|null $modalTitle = null,
public string|null $modalBody = null,
public string|null $modalSubmit = null,
public bool $yesOrNo = false,
@@ -30,4 +30,4 @@ class Modal extends Component
{
return view('components.modal');
}
}
}