Last active
January 28, 2017 22:55
-
-
Save insign/0cafa807500931e22af73e50998de576 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// This will create a product, apply a discount since it is a new | |
// product, and send a notification via email | |
public function store() | |
{ | |
// Create product from request | |
$product = Product::create($request->all()); | |
// Get the discount to be applied | |
$discount = Discount::byType('newProduct'); | |
// Apply discount for the created product | |
$discount->applyDiscountForProduct($product); | |
$users = User::all(); | |
// Notify users for the newly created product | |
foreach ($users as $user) { | |
// Notify users via email | |
$notification = Notification::via('email'); | |
$notification->notifyUser($user); | |
} | |
return 'Success'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment