Skip to content

Instantly share code, notes, and snippets.

@korrio
Created October 20, 2015 14:09
Show Gist options
  • Save korrio/4620752a35f8b304d821 to your computer and use it in GitHub Desktop.
Save korrio/4620752a35f8b304d821 to your computer and use it in GitHub Desktop.
Show
public function show($order_id)
{
$query = Order::with([
"account",
"orderItems",
"orderItems.product",
"orderItems.product.category"
]);
//$order_id = Input::get("order_id");
if ($order_id)
{
$query->where("id", $order_id);
}
return $query->get();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment