Make invoices editable and build possibility to send them manually.

This commit is contained in:
2025-01-14 17:47:50 +01:00
parent 671981000f
commit bfb5b8f56e
6 changed files with 642 additions and 79 deletions

View File

@@ -34,9 +34,9 @@ class InvoiceController extends Controller
/**
* Show the form for editing the specified resource.
*/
public function edit(Invoice $invoice)
public function edit(Invoice $invoice): View
{
//
return view('invoice.edit', ['invoice' => $invoice]);
}
/**