Apply changes when creating invoices for projects.
All checks were successful
Build project image / Build-and-release-image (push) Successful in 3m9s

This commit is contained in:
2025-05-13 16:00:41 +02:00
parent f478b4aed6
commit e1f579c7fd
6 changed files with 22 additions and 28 deletions

View File

@@ -81,9 +81,9 @@
@if($invoice->project)
<div class="flex flex-row items-center">
<x-input-label class="w-1/3" for="project_count"
<x-input-label class="w-1/3" for="project_name"
:value="__('project.Project')"/>
<x-text-input id="project_count" name="project_count" type="text"
<x-text-input id="project_name" name="project_name" type="text"
value="{{ $invoice->project->name }}"
class="mt-1 w-2/3"
autofocus disabled
@@ -91,9 +91,9 @@
</div>
<div class="flex flex-row items-center">
<x-input-label class="w-1/3" for="project_count"
<x-input-label class="w-1/3" for="project_number"
:value="__('project.Project Number')"/>
<x-text-input id="project_count" name="project_count" type="text"
<x-text-input id="project_number" name="project_number" type="text"
value="{{ $invoice->project->project_number }}"
class="mt-1 w-2/3"
autofocus disabled