eventFillData() public méthode

Return the fields and values to create a new news from
public eventFillData ( )
 /**
  * Store a newly created resource in storage.
  *
  * @param EventCreateRequest $request
  * @return Response
  */
 public function store(EventCreateRequest $request)
 {
     if ($this->repository->create($request->eventFillData())) {
         return Redirect::to('admin/event');
     } else {
         return Redirect::back()->withInput()->withErrors('保存失败!');
     }
 }