Method: KktShoppe::Customer#full_name
- Defined in:
- app/models/kkt_shoppe/customer.rb
#full_name ⇒ String
The full name of the customer created by concatinting the first & last name
28 29 30 |
# File 'app/models/kkt_shoppe/customer.rb', line 28 def full_name "#{first_name} #{last_name}" end |