PHPackages                             xorth/gotourl - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [HTTP &amp; Networking](/categories/http)
4. /
5. xorth/gotourl

ActiveLibrary[HTTP &amp; Networking](/categories/http)

xorth/gotourl
=============

Save a URL to redirect the user later

0.1.1(9y ago)017MITPHP

Since Apr 27Pushed 3y ago1 watchersCompare

[ Source](https://github.com/jorgecortesdev/gotourl)[ Packagist](https://packagist.org/packages/xorth/gotourl)[ RSS](/packages/xorth-gotourl/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (5)Versions (3)Used By (0)

GoToUrl for your laravel App
============================

[](#gotourl-for-your-laravel-app)

[![Latest Stable Version](https://camo.githubusercontent.com/4412f2d44b01ac67d251197900aee430e0f45b6cf0806b6b8e55d946f68d5ee4/68747470733a2f2f706f7365722e707567782e6f72672f786f7274682f676f746f75726c2f762f737461626c65)](https://packagist.org/packages/xorth/gotourl)[![Latest Unstable Version](https://camo.githubusercontent.com/dd88f9927b282b8eef4aca955117dc5d0bce8c4f38c5319251dc742bb5229a1f/68747470733a2f2f706f7365722e707567782e6f72672f786f7274682f676f746f75726c2f762f756e737461626c65)](https://packagist.org/packages/xorth/gotourl)[![License](https://camo.githubusercontent.com/cce4f3b233d540488c53e75bb2469ca23797155ba2c0cd67add21da892e50790/68747470733a2f2f706f7365722e707567782e6f72672f786f7274682f676f746f75726c2f6c6963656e7365)](https://packagist.org/packages/xorth/gotourl)

This composer package offers an easy redirector for your laravel 5.3 applications.

Installation
------------

[](#installation)

Begin by pulling in the package through Composer.

```
composer require xorth/gotourl
```

Next, include the service provider within your `config/app.php` file.

```
'providers' => [
    Xorth\GoToUrl\GoToUrlServiceProvider::class,
];
```

You can register the Go facade in the aliases key of your `config/app.php` file if you like.

```
'aliases' => [
    'Go' => \Go::class,
];
```

Usage
-----

[](#usage)

Within your controllers, before you perform a save, edit or delete action, make a call to the `go()` function to save where you want to go.

```
public function create()
{
    go()->after(); // Get the full url through $request->fullUrl()

    // do more stuff
}
```

```
public function save()
{
    // do something

    return go()->now();
}
```

You may also do:

- `go('/something/to/show')`
- `go()->after('/something/to/show')`
- `Go::after('/something/to/show`: Only if the facade was registered.
- `Go::now()`: Only if the facade was registered.

This can be pretty useful if you save, update or delete something in different parts of your app.

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity54

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~1 days

Total

2

Last Release

3299d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/f49dc36d4c5fe7ea8467da4bf1b5e18eba3fc3081176792806c295f30b0115a2?d=identicon)[jorgecortesdev](/maintainers/jorgecortesdev)

---

Top Contributors

[![jorgecortesdev](https://avatars.githubusercontent.com/u/5498238?v=4)](https://github.com/jorgecortesdev "jorgecortesdev (14 commits)")

---

Tags

laravelredirector

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/xorth-gotourl/health.svg)

```
[![Health](https://phpackages.com/badges/xorth-gotourl/health.svg)](https://phpackages.com/packages/xorth-gotourl)
```

###  Alternatives

[barryvdh/laravel-debugbar

PHP Debugbar integration for Laravel

19.1k124.3M623](/packages/barryvdh-laravel-debugbar)[fruitcake/laravel-debugbar

PHP Debugbar integration for Laravel

19.1k662.9k28](/packages/fruitcake-laravel-debugbar)[omniphx/forrest

A Laravel library for Salesforce

2724.4M8](/packages/omniphx-forrest)[api-platform/laravel

API Platform support for Laravel

59126.4k6](/packages/api-platform-laravel)[dragon-code/laravel-http-logger

Logging incoming HTTP requests

319.8k3](/packages/dragon-code-laravel-http-logger)[laravel-shift/curl-converter

A command line tool to convert curl requests to Laravel HTTP requests.

935.3k](/packages/laravel-shift-curl-converter)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
