Skip to content

Instantly share code, notes, and snippets.

@mix5003
Created April 3, 2016 09:50
Show Gist options
  • Select an option

  • Save mix5003/508552d20e8a03dd0e6f521bcc3821fc to your computer and use it in GitHub Desktop.

Select an option

Save mix5003/508552d20e8a03dd0e6f521bcc3821fc to your computer and use it in GitHub Desktop.
Example Logic
<?php
//Just a dummy
$customer = CustomerRepo::first();
$products = ProductRepo::limit(3)->get(); //return array of products
$order = new Order();
$order->setCustomer($customer);
$order->setProducts($products);
$dm->persist($order);
$dm->flush();
<?php
//Just a dummy
$order = OrderRepo::first();
$dm->remove($order);
$dm->flush();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment