Hi. I had everything working fine when I was testing it locally, however, there seems to be something happening with the sessions after deployment via Heroku and PostGres. It seems this line breaks the code entirely
$request->session()->get('trucking')->update($request->all());
, where 'trucking' is my set session.
After editing this line to:
$request->session()->get('trucking')->save($request->all());
and changing "firstOrCreate" to "firstOrNew", the first step is posting, but not the rest. Do you have any suggestions?