getRedirectUrl

After creating a new Product i need to redirect from create page to another menu along with created data..
protected function getRedirectUrl(): string { return Url('app/kit-fee'); } This code working but i need to send created data along with it..
1 Reply
toeknee
toeknee14mo ago
Why not put the data into the session then call it once you have been redirected? If it's not much data then you can put it in the GET method, or if you have created the page... just pass in the record ID and call the data from the record on your kit-free page