close #700 Fixed: Signed url not working

This commit is contained in:
cuneytsenturk
2018-12-26 16:46:52 +03:00
parent 1ec85c8374
commit c914c73837
9 changed files with 66 additions and 33 deletions

View File

@ -85,7 +85,7 @@ class Invoices extends Controller
$payment_methods = Modules::getPaymentMethods();
$customer_share = SignedUrl::sign(url('links/invoices/' . $invoice->id));
$customer_share = SignedUrl::sign(route('signed.invoices', $invoice->id));
return view('incomes.invoices.show', compact('invoice', 'accounts', 'currencies', 'account_currency_code', 'customers', 'categories', 'payment_methods', 'customer_share'));
}