tattersoftware / codeigniter4-audits

Lightweight object logging for CodeIgniter 4
MIT License
13 stars 6 forks source link

Invalid model event callback #12

Closed germs2611 closed 3 years ago

germs2611 commented 3 years ago

Am getting the below snippet error when trying to insert: image

MGatner commented 3 years ago

Sounds like you didn't include the trait on your model:

use Tatter\Audits\Traits\AuditsTrait;

class MyModel extends Model
{
    use AuditsTrait;
germs2611 commented 3 years ago

image

germs2611 commented 3 years ago

Oh ok I see the error Tatter and Audits suppose to start with capital letters. Working now.

Thanks,