A better tag overview as preparation for #525

This commit is contained in:
James Cole
2017-01-09 17:57:29 +01:00
parent 78b71e72f1
commit 373b9cdd9f
5 changed files with 236 additions and 24 deletions

View File

@@ -586,7 +586,9 @@ Route::group(
Route::get('', ['uses' => 'TagController@index', 'as' => 'index']);
Route::get('create', ['uses' => 'TagController@create', 'as' => 'create']);
Route::get('show/{tag}', ['uses' => 'TagController@show', 'as' => 'show']);
Route::get('show/{tag}/{date?}', ['uses' => 'TagController@show', 'as' => 'show']);
Route::get('edit/{tag}', ['uses' => 'TagController@edit', 'as' => 'edit']);
Route::get('delete/{tag}', ['uses' => 'TagController@delete', 'as' => 'delete']);