예제 #1
0
파일: Alert.php 프로젝트: schlos/GreenAlert
 public static function boot()
 {
     parent::boot();
     // Setup event bindings...
     Alert::created(function ($alert) {
         \Queue::push(new AlertQueue($alert->id));
     });
 }