Custom Models
Customize WhatsApp Manager models according to your needs.
Extend Models
namespace App\Models;
use ScriptDevelop\WhatsappManager\Models\Contact as BaseContact;
class CustomContact extends BaseContact
{
// Your customization
}
Configure
// config/whatsapp.php
'models' => [
'contact' => \App\Models\CustomContact::class,
],
π‘
Documentation<br />
Check the installation documentation for more details on model customization.