示例#1
1
 /**
  * Handle the event.
  *
  * @return void
  */
 public function handle()
 {
     if (Cart::instance(auth()->id())->count(false) == 0) {
     } else {
         Cart::store(auth()->id());
     }
 }