Package Data | |
---|---|
Maintainer Username: | jorgecortesdev |
Maintainer Contact: | jorge.cortes@gmail.com (Jorge Cortés) |
Package Create Date: | 2017-04-27 |
Package Last Update: | 2022-05-30 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-18 03:03:57 |
Package Statistics | |
---|---|
Total Downloads: | 14 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 1 |
Total Forks: | 0 |
Total Open Issues: | 0 |
This composer package offers an easy redirector for your laravel 5.3 applications.
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' => Xorth\GoToUrl\Go::class,
];
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.