Skip to content

Instantly share code, notes, and snippets.

@NtimYeboah
Created November 17, 2017 14:19
Show Gist options
  • Save NtimYeboah/0c19d3917eb40b4fc6488522915d8bf3 to your computer and use it in GitHub Desktop.
Save NtimYeboah/0c19d3917eb40b4fc6488522915d8bf3 to your computer and use it in GitHub Desktop.
<?php
namespace Kudobuzz\Entities;
use Kudobuzz\Contracts\OrderInterface;
class Customer implements OrderInterface
{
public function create()
{
//...Some stuff
$order->approved_at = Carbon::now();
$order->status = Order::APPROVED;
$order->save();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment