/**
  * Implement find($id)
  */
 public function find($id)
 {
     // using the Eloquent model
     return UserConversation::findOrFail($id);
 }