/**
  * List messages.
  *
  * @return Response
  */
 public function index()
 {
     return view('message.conversation.index', ['messages' => Message::conversations()->user()->with(['sender', 'receiver'])->orderBy('updated_at', 'desc')->paginate(self::DEFAULT_PAGE_SIZE)]);
 }