Fix Client Admin CP issues

This commit is contained in:
Jonny Barnes 2017-03-03 11:58:21 +00:00
parent b9a80a7c00
commit 03e52915bd
4 changed files with 4 additions and 3 deletions

View file

@ -64,7 +64,7 @@ Route::group(['domain' => config('url.longurl')], function () {
//Micropub Clients
Route::group(['prefix' => 'clients'], function () {
Route::get('/', 'ClientsController@index');
Route::get('/edit', 'ClientsController@index');
Route::get('/new', 'ClientsController@create');
Route::get('/edit/{id}', 'ClientsController@edit');
Route::post('/new', 'ClientsController@store');