$object->getTitle(), 'description' => $object->getDescription(), 'starting_on' => $object->getStartingOn(), 'ending_on' => $object->getEndingOn() ]; } /** * @return array */ protected function rules(): array { return [ 'title' => 'required', 'description' => 'required', 'starting_on' => 'required', 'ending_on' => 'required' ]; } /** * @return array */ protected function messages(): array { return []; } }