skip to Main Content

Get part of url from Laravel named route – Shopify

Is there a possibility to get the part of url, that is defined in route? For example with this route: Route::get('/editor/{id}', 'EditorController@editor')->name('editorNew'); after using mentioned functionality, let's say route_link(); i would like to get: $route_link = route_link('editorNew', array('id' => 1));…

VIEW QUESTION
Back To Top
Search