Skip to content

Commit

Permalink
Merge pull request #1 from EgorGruzdev/master
Browse files Browse the repository at this point in the history
(*) fix routes.php
  • Loading branch information
butschster committed Mar 23, 2016
2 parents 302a23d + 59dd9cf commit 5380d94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
Route::post('widget/create', ['as' => 'widget.create.post', 'uses' => 'WidgetController@postCreate']);
Route::get('widget/{id/}template', ['as' => 'widget.template', 'uses' => 'WidgetController@getCreate']);
Route::post('widget/{id}/delete', ['as' => 'widget.delete', 'uses' => 'WidgetController@postDelete']);
Route::get('widget/popup', ['as' => 'widget.popup_list', 'uses' => 'WidgetController@getPopupList']);
Route::get('widget/popup/{id}', ['as' => 'widget.popup_list', 'uses' => 'WidgetController@getPopupList']);
Route::get('widget/{type}', ['as' => 'widget.list.by_type', 'uses' => 'WidgetController@getIndex']);
});

Expand Down

0 comments on commit 5380d94

Please sign in to comment.