muhamadrezaar/route-controller

Route Controller for Laravel 5.3++

1.0.4 2017-10-03 03:36 UTC

This package is not auto-updated.

Last update: 2024-05-06 05:10:03 UTC


README

Total Downloads License

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

https://reza.mit-license.org/

ENJOY!!