add mount to requiredfields
This commit is contained in:
parent
c57c66d1b3
commit
3c4e779585
2 changed files with 4 additions and 1 deletions
|
|
@ -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…
Add table
Reference in a new issue