From b56e62136d8ae4c3c49fe0cbc6713639d7d064a0 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Tue, 10 Oct 2023 10:51:43 +1100 Subject: [PATCH] Fixes for searcg --- app/Http/Controllers/SearchController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/SearchController.php b/app/Http/Controllers/SearchController.php index 19400c9a29f9..cd985b44c721 100644 --- a/app/Http/Controllers/SearchController.php +++ b/app/Http/Controllers/SearchController.php @@ -99,7 +99,7 @@ class SearchController extends Controller 'name' => $invoice->client->present()->name() . ' - ' . $invoice->number, 'type' => '/invoice', 'id' => $invoice->hashed_id, - 'path' => "/clients/{$invoice->hashed_id}/edit" + 'path' => "/invoices/{$invoice->hashed_id}/edit" ]; }