brayniverse / laravel-route-macros
A collection of useful route macros.
v1.0.0
2017-03-07 09:58 UTC
Requires
- php: ^5.5.9 || ^7.0
- illuminate/http: 5.1.* || 5.2.* || 5.3.* || 5.4.*
- illuminate/support: 5.1.* || 5.2.* || 5.3.* || 5.4.*
Requires (Dev)
- orchestra/testbench: ~3.0
- phpunit/phpunit: ^4.8 || ^5.0
This package is not auto-updated.
Last update: 2024-11-09 21:01:42 UTC
README
Installation
Begin by installing the package through Composer.
$ composer require brayniverse/laravel-route-macros
Then add the following to your providers array in config/app.php
.
Brayniverse\RouteMacros\ServiceProvider::class
Usage
view
Normally you'd have to return a view in either a controller method or callback like the following:
public function contact() { return view('contact'); } // or Route::get('/contact', function () { return view('contact'); });
Now you can do the same in one line.
Route::view('/contact', 'contact');
redirect
Normally you'd have to create a closure to redirect to the new route.
Route::get('/contact_us', function () { return redirect('/contact'); });
Now you can do the same in one line.
Route::redirect('/contact_us', '/contact');
Optionally, you can pass a third argument to Route::redirect()
which will set the status code when redirecting. If you do not specify a status code, the package will use 301
as the status code.
Route::redirect('/contact_us', '/contact', 302);