refactoring redirect class.
This commit is contained in:
parent
ea6b58b28c
commit
a86d4477ca
|
@ -60,11 +60,13 @@ public static function to_secure($url, $method = 'location', $status = 302)
|
||||||
*/
|
*/
|
||||||
public function with($key, $value)
|
public function with($key, $value)
|
||||||
{
|
{
|
||||||
if (Config::get('session.driver') != '')
|
if (Config::get('session.driver') == '')
|
||||||
{
|
{
|
||||||
Session::flash($key, $value);
|
throw new \Exception("Attempting to flash data to the session, but no session driver has been specified.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Session::flash($key, $value);
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue