Advertisement
Guest User

Untitled

a guest
Mar 31st, 2015
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. public function scopeByInStore($query)
  2. {
  3. $inStoreOrderType = GiftCardOrderTypes::$inStore;
  4. $id = GiftCardBatch::where('name', '=', $inStoreOrderType)->first()->id;
  5. $inStoreGiftCardIds = GiftCard::where('gift_card_batch_id', '=', $id)
  6. ->lists('id');
  7.  
  8. return $query->whereIn('gift_card_id', $inStoreGiftCardIds);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement