Redirects

I want to Redirect from a page to another page,..page is get redirecting i need to send data with it..
Action::make('pay_fees') ->action(function (array $data, $record): void { Redirect::to('app/student-reg-fee-reciept')->with(['student' => $record]); })
the data in another page showing null
public function mount(Request $request) { dd($request->get('student')); $this->record = Student::query()->find($request->get('student')); }...how to get data in mount
Was this page helpful?