Skip to content

Instantly share code, notes, and snippets.

@insign
Last active January 28, 2017 22:55
Show Gist options
  • Save insign/0cafa807500931e22af73e50998de576 to your computer and use it in GitHub Desktop.
Save insign/0cafa807500931e22af73e50998de576 to your computer and use it in GitHub Desktop.
<?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