Guest User

Untitled

a guest
Apr 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. public static function boot()
  2. {
  3. static::creating(function ($model){
  4. DB::enableQueryLog();
  5. });
  6.  
  7. static::created(function ($model) {
  8. print_r($model);
  9. print_r(DB::getQueryLog());
  10. });
  11. }
Add Comment
Please, Sign In to add comment