aaronlord / laroute

Generate Laravel route URLs from JavaScript.
MIT License
794 stars 139 forks source link

Laroute Macro added on Route #87

Open wesleyhf opened 6 years ago

wesleyhf commented 6 years ago

What do you think about register a macro to make the flow similar to the new standard of Laravel?

https://laravel.com/docs/5.6/routing#named-routes

e.g:

// old way
Route::get('show/{user}', [
    'laroute' => true,
    'as' => 'show.user',
    'uses' => 'UserController@show'
]);

// new way
Route::get('show/{user}', 'UserController@show')->name('show.user')->laroute();