Method: KktShoppe::Customer#full_name

Defined in:
app/models/kkt_shoppe/customer.rb

#full_nameString

The full name of the customer created by concatinting the first & last name

Returns:

  • (String)


28
29
30
# File 'app/models/kkt_shoppe/customer.rb', line 28

def full_name
  "#{first_name} #{last_name}"
end