拉拉_contact – 联系管理及WhatsApp智能CRM

拉拉_contact – 联系管理及WhatsApp智能CRM 2.0.0

没有下载权限
  • 主题发起人 主题发起人 work
  • 起始日期 起始日期
已加入
2021/10/14
消息
6,740
回应得分
2,082
Credits
$13,864
TheLaraContact – Contact Management & WhatsApp AI-assisted CRM已提交,现在可免费下载。感谢贡献成员的付出。 @work!
查看附件 126929
LaraContact是一个生产就绪的CRM,它将联系人列表转变为一个真正的沟通中心。它采用了现代UI设计,并通过Twilio提供了双向短信和WhatsApp功能,内置了一个浏览器拨号器用于语音通讯,以及一个带有开放跟踪功能的排队式批量邮件撰写工具,还拥有一个由Sanctum驱动的REST API。

Anthropic Claude为AI功能提供支持,这些功能可以从电子邮件签名中提取联系人详情、从联系人的笔记中自动建议标签、纠正消息中的拼写错误,并翻译回复...
Read more about this resource...

 
Tested:
More issue With Mysql Because some sql was work with SQLite:
SQL:
SQLSTATE[42000]: Syntax error or access violation: 1305 FUNCTION test15.strftime does not exist (Connection: mysql, Host: 127.0.0.1, Port: 3306, Database: test15, SQL: select * from contacts where birthday is not null and contacts.team_id = 1 and contacts.deleted_at is null order by strftime('%m-%d', birthday) limit 4)
from
PHP:
        $upcomingBirthdays = Contact::whereNotNull('birthday')
          ->orderByRaw("strftime('%m-%d', birthday)")
                       ->limit(4)
            ->get();
to
PHP:
        $upcomingBirthdays = Contact::whereNotNull('birthday')
            //->orderByRaw("strftime('%m-%d', birthday)")
            ->orderByRaw("DATE_FORMAT(birthday, '%m-%d')")
            ->limit(4)
            ->get();
2026-07-09_160317.webp2026-07-09_161202.webp2026-07-09_161223.webp
 
返回
顶部