LaraContact – Contact Management & WhatsApp AI-assisted CRM

LaraContact – Contact Management & WhatsApp AI-assisted CRM 2.0.0

Vous n'avez pas l'autorisation de télécharger
Inscrit(e) le
Oct 14, 2021
Messages
6,711
Score de réaction
2,082
Credits
$13,717
The LaraContact – Contact Management & WhatsApp AI-assisted CRM has been submitted and is now available for free download. Big thanks to the contribution from our member @work !

Afficher la pièce jointe 126929
LaraContact is a production-ready CRM that turns a contact list into a real communication hub. Built with a modern UI, it ships with two-way SMS and WhatsApp via Twilio, an in-browser dialer for voice, a queued bulk-email composer with open tracking, and a Sanctum-powered REST API.

Powered by Anthropic Claude, AI features paste-extract contact details from email signatures, auto-suggest tags from a contact’s notes, fix spelling on messages, and translate replies...
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
 
Retour
Haut