From e0807a3a6a30ff9555fd235179a8a8014f9b60fa Mon Sep 17 00:00:00 2001 From: David Bomba Date: Mon, 17 Jul 2023 09:47:14 +1000 Subject: [PATCH] Minor adjustments for blobs --- app/Http/Controllers/ClientPortal/InvoiceController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/ClientPortal/InvoiceController.php b/app/Http/Controllers/ClientPortal/InvoiceController.php index 6e04f4a7e938..2e432e964210 100644 --- a/app/Http/Controllers/ClientPortal/InvoiceController.php +++ b/app/Http/Controllers/ClientPortal/InvoiceController.php @@ -86,7 +86,7 @@ class InvoiceController extends Controller public function showBlob($hash) { - $data = Cache::pull($hash); + $data = Cache::get($hash); match($data['entity_type']){ 'invoice' => $invitation = InvoiceInvitation::withTrashed()->find($data['invitation_id']),