away() public méthode

Create a new redirect response to an external URL (no validation).
public away ( string $path, integer $status = 302, array $headers = [] ) : Illuminate\Http\RedirectResponse
$path string
$status integer
$headers array
Résultat Illuminate\Http\RedirectResponse
Exemple #1
0
 /**
  * Create a new redirect response to an external URL (no validation).
  *
  * @param string $path
  * @param int $status
  * @param array $headers
  * @return \Illuminate\Http\RedirectResponse 
  * @static 
  */
 public static function away($path, $status = 302, $headers = array())
 {
     return \Illuminate\Routing\Redirector::away($path, $status, $headers);
 }