Exemple #1
0
 public static function unsubscribe($id)
 {
     $idsToDelete = Lunch::byUser($id)->get()->lists('id');
     Lunch::whereIn('id', $idsToDelete)->delete();
     Sub::whereIn('lunch_id', $idsToDelete)->delete();
     return ['delete' => $idsToDelete];
 }