formatProperties( $fields ); return parent::update( $fields ); } /** * Create resource by fields * * When a resource is created the Model ID should be set to the * resource's ID. * * @param array $fields * * @return mixed */ public function create( $fields = [] ) { $fields = $this->formatProperties( $fields ); return parent::create( $fields ); } /** * Format properties * * @param array $fields * * @return array */ public function formatProperties( $fields ) { $fields = Arr::merge( $fields, $this->autoFill ); foreach( $fields as $name => $value ) { if( ! empty( $this->format[ $name ] ) && is_callable( $this->format[ $name ] ) ){ $fields[ $name ] = call_user_func( $this->format[ $name ], $value ); } } return $fields; } /** * Get Date Time * * @return bool|string */ public function getDateTime() { return gmdate('Y-m-d H:i:s', time()); } }