URL::full PHP Method

full() public static method

Get the full URL for the current request.
public static full ( ) : string
return string
        public static function full()
        {
            return \Illuminate\Routing\UrlGenerator::full();
        }

Usage Example

Ejemplo n.º 1
0
 public function getIndex($option = null)
 {
     Session::put('curr_page', URL::full());
     $view = View::make('home');
     $view['sid'] = Session::getId();
     return $view;
 }
All Usage Examples Of URL::full