mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
catch for no email provided in braintree paypal integration
This commit is contained in:
parent
412a4a1315
commit
76225919e2
@ -39,7 +39,7 @@
|
||||
data-token="{{ $token->token }}"
|
||||
name="payment-type"
|
||||
class="form-radio cursor-pointer toggle-payment-with-token"/>
|
||||
<span class="ml-1 cursor-pointer">{{ $token->meta?->email }}</span>
|
||||
<span class="ml-1 cursor-pointer">{{ property_exists($token->meta, 'email') ? $token->meta?->email : 'no email provided'}}</span>
|
||||
</label>
|
||||
@endforeach
|
||||
@endisset
|
||||
|
Loading…
x
Reference in New Issue
Block a user