1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00

minor fixes for handle reversal

This commit is contained in:
David Bomba 2021-07-29 20:31:20 +10:00
parent 22036654a5
commit e5260df7d4

View File

@ -32,7 +32,7 @@ class ContactHashLoginController extends Controller
->whereNull('deleted_at')
->first();
return route('client.recurring_invoice.show', $recurring_invoice->hashed_id);
return redirect()->route('client.recurring_invoice.show', $recurring_invoice->hashed_id);
}