Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

168
Vistas
Displaying Transaction Id to the customers view

I've been making an eCommerce laravel system and I've been struggling with showing the customers their transactions Id after they've completed all their payment. I'm using an API to carry out the transaction. After the user has successfully carried out the payment, the transaction Id is then saved to the database. Now, I want to take the transaction id, and display it on the customers view so that they can print an invoice. Here's the controller that's supposed to be handling all the transaction Id:

public function confirmPayment(Request $request){
    $request->validate(['transactionId'=>'required']);
    $transId = $request->transactionId;
    $exists = Payment::where('mpesa_trans_id',$transId)->latest()->first();
    if(!$exists){
        $error= ["success"=>false, "error"=>"Unable to confirm your transaction code. Please contact admin.. :)"];
        session($error);
        return back();
    }
    $message = ["success"=>true, "message"=>"Payment successful!"];
    session($message);
    return back();
}

Here's how I've tried to display the transaction id on the customers view

                        <div class="frm-grp">
                            <label>@lang('Transaction Id')</label>
                            <input type="text" name="transactionId" placeholder="@lang('Example: OIB9FQP9H7')">
                            <span class="text-box">Your Transaction Id Is</span>
                            <span>{{$transId->transactionId}}</span>
                        </div>

Which also gives me an error 'Undefined variable: transId'. I didn't put the @foreach yet.

Can someone please assist me on figuring out the solution to this problem? This is where the transaction id is supposed to be displayed after the customer makes a payment.

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

The variables declared in the controller are not automatically available to the view especially as you're doing a redirect.

To pass variables to a view in laravel you need to include them in the second parameter of the view function:

return view('transaction.show', ['transId' => $transId]);

You're redirecting to the previous route however so you can't do that. Instead you need to make that variable available in some other way.

The previous request data should be available using the old method which I think would work in your case:

<span>{{ old('transId') }}</span>
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda