muhamadrezaar/route-controller
Route Controller For Laravel 5.3++
If you are used to using laravel 4 or laravel 5.2 you may be familiar with Route :: controller, but unfortunately in laravel 5.3 ++ Route Controller will be deleted.
But do not worry, by using this package you can reuse the artificial route controller and maintained by me (Muhamad Reza AR)
How to Install ?
Add Packages in composer
composer require muhamadrezaar/route-controller
Add service provider and facade
Julles\RouteControllerProvider::class,
'RouteController'=>Julles\RouteControllerFacade::class,
How to Use ?
in route file (routes/web.php)
\RouteController::build('tes','TesController');
Samples Methods in Source Controller
public function getIndex() // url generated : yoururl.dev/tes or yoururl.dev/tes/index
{
dd('hello world');
}
public function getTriRiska() // url generated yoururl.dev/tes/tri-riska
{
dd('My Friend');
}
public function postCreate() // url generated yoururl.dev/tes/create
{
}
License
MIT
ENJOY!!