-1

How to redirect to A.com/status

Is it posible to double redirect ? for example I want go to A.com/status and to one of my controller(Update)

public function update_order(){
    $nom = 'status'; 
    $data=  array(
        'status' => 'confirmed' 
        );

    $this->data->simpanupdateorder($nom,$data);
    **redirect('http://A.com/'echo $nom);**
}
Idan Str
  • 614
  • 1
  • 11
  • 33

1 Answers1

-1
return redirect()->action('UserController@profile', ['id' => 1]);

or

return redirect('dashboard')->with('status', 'Profile updated!');

See https://laravel.com/docs/5.6/redirects

Vahid Moghadam
  • 90
  • 1
  • 11