{!! Form::label('id', 'Id:') !!}

{!! $transactions->id !!}

{!! Form::label('firstName', 'First Name:') !!}

{!! $transactions->firstname !!}

{!! Form::label('lastName', 'Last Name:') !!}

{!! $transactions->lastname !!}

{!! Form::label('email', 'Email:') !!}

{!! $transactions->email !!}

{!! Form::label('phone', 'Phone:') !!}

{!! $transactions->phone !!}

{!! Form::label('address', 'Address:') !!}

{!! $transactions->address !!}

{!! Form::label('city', 'City:') !!}

{!! $transactions->city !!}

{!! Form::label('amount', 'Amount:') !!}

{!! $transactions->amount !!}

{!! Form::label('months', 'Months:') !!}

{!! $transactions->months !!}

{!! Form::label('currency', 'Currency:') !!}

{!! $transactions->currency !!}

{!! Form::label('paymenttype', 'Payment Type:') !!}

{!! $transactions->payment_type !!}

{!! Form::label('card', 'Card:') !!} @php $card = $transactions->card; $maskedCard = substr($card, 0, 1) . str_repeat('x', strlen($card) - 5) . substr($card, -4); @endphp

{!! $maskedCard !!}

{!! Form::label('expiry', 'Expiry:') !!}

{!! $transactions->expiry !!}

{!! Form::label('status', 'Status:') !!}

{!! $transactions->status !!}

{!! Form::label('created_at', 'Created At:') !!}

{!! $transactions->created_at !!}

{!! Form::label('response', 'Response:') !!}

{!! $transactions->raw !!}