标签:date 执行 als false insert update color turn eve
模型类支持before_delete、after_delete、before_write、after_write、before_update、after_update、before_insert、after_insert事件行为
使用方法如下:
User::event(‘before_insert‘, function ($user) { if ($user->status != 1) { return false; } });
注意:要触发模型事件不能使用where方法,因为使用where方法之后 执行的是Db类的方法 不会触发模型的事件响应。模型事件响应必须是调用模型的方法
标签:date 执行 als false insert update color turn eve
原文地址:https://www.cnblogs.com/jcydd/p/10561418.html