hello_world
form fill and default of select tag is not working
here is my mount fuction code
public function mount()
{
$user = auth()->user()->id;
$hasPosDeviceCookie = PosAssign::whereNull('deleted_at')->where('user_id', $user)->pluck('pos_devices_id');
$paymentGatewayName = count($hasPosDeviceCookie) != 0 ? 'Payment Terminals' : 'Auth.net';
$prefillData['payment_gateway_id'] = PaymentGateway::firstWhere('name', $paymentGatewayName)->id;
$this->form->fill($prefillData);
}
2 replies