Fix dashboard CSV export

This commit is contained in:
Kevin MacMartin 2016-08-19 19:44:30 -04:00
parent d5179305b5
commit fa6ebd134f

View file

@ -44,7 +44,7 @@ Route::group([ 'prefix' => 'dashboard' ], function() {
Route::get('/', 'DashboardController@index');
Route::get('/contact', 'DashboardController@getContact');
Route::get('/subscriptions', 'DashboardController@getSubscriptions');
Route::get('/export', 'DashboardController@getExport');
Route::get('/export/{model}', 'DashboardController@getExport');
Route::post('/image-upload', 'DashboardController@postImageUpload');
Route::post('/edit', 'DashboardController@postEdit');
Route::post('/reorder', 'DashboardController@postReorder');