first_name . ' ' . $this->last_name; } /** * Get the customer record associated with the order. */ public function customer() { return $this->belongsTo(Customer::class); } }