Minor fixes for get Payment methods

This commit is contained in:
David Bomba 2022-02-09 17:15:34 +11:00
parent 7d4e24fab3
commit 23d6a69573
2 changed files with 1 additions and 2 deletions

View File

@ -79,7 +79,6 @@ class InvoiceController extends Controller
if ($request->query('mode') === 'fullscreen') {
return render('invoices.show-fullscreen', $data);
}
// $request->fullUrlWithQuery(['q' => null]);
return $this->render('invoices.show', $data);
}

View File

@ -29,7 +29,7 @@ class PayNowDropdown extends Component
$this->total = $total;
$this->methods = auth()->user()->client->service()->getPaymentMethods($total);
$this->methods = auth()->guard('contact')->user()->client->service()->getPaymentMethods($total);
}
public function render()