Remove unnecessary symbol from filename when exporting answers

This commit is contained in:
Dave Earley 2016-08-11 13:22:37 +01:00
parent 6d9433a45c
commit e79aeb10c1
1 changed files with 1 additions and 1 deletions

View File

@ -265,7 +265,7 @@ class EventSurveyController extends MyBaseController
$excel->setCreator(config('attendize.app_name'))
->setCompany(config('attendize.app_name'));
$excel->sheet('survey_answers_sheet_!', function ($sheet) use ($event_id) {
$excel->sheet('survey_answers_sheet_', function ($sheet) use ($event_id) {
$event = Event::scope()->findOrFail($event_id);