mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
add mount to requiredfields
This commit is contained in:
parent
c57c66d1b3
commit
3c4e779585
@ -123,7 +123,8 @@ class InvoiceController extends Controller
|
||||
//format totals
|
||||
$formatted_total = Number::formatMoney($total, auth()->user()->client);
|
||||
|
||||
$payment_methods = auth()->user()->client->service()->getPaymentMethods($total);
|
||||
// $payment_methods = auth()->user()->client->service()->getPaymentMethods($total);
|
||||
$payment_methods = auth()->user()->client->getPaymentMethods($total);
|
||||
|
||||
$data = [
|
||||
'settings' => auth()->user()->client->getMergedSettings(),
|
||||
|
@ -65,6 +65,8 @@ class RequiredClientInfo extends Component
|
||||
|
||||
public $show_form = false;
|
||||
|
||||
public function mount() {}
|
||||
|
||||
public function handleSubmit(array $data): bool
|
||||
{
|
||||
$rules = [];
|
||||
|
Loading…
x
Reference in New Issue
Block a user