Skip to content
Advertisement

Passing values to blade using redirect() and back() functions

I have successfully pass values from form to controller. Calculation is is working well, since its dump all the values using dd($fee); dd($vat); dd($Transaction_vat);.

But now, when I try to pass the values to blade using return redirect()->back()->with('fee', $fee ,'vat', $vat , 'Transaction_vat', $Transaction_vat); , only fee is captured $fee and the rest of the data is ommitted. This is how I capture data in blade;

JavaScript

This is how controller looks like

JavaScript

Now my question is, How do I pass all the values in ->with('fee', $fee ,'vat', $vat , 'Transaction_vat', $Transaction_vat) to blade?

Advertisement

Answer

You have 2 possibilities.

1 – Try something like :

JavaScript

2 – Or like :

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement