Gift
Gifts are a purchase with someone else's wallet attached. The peculiarity of gifts is that when the gift is returned, the money is returned to the person who bought it, and not to the person to whom it was given. This functionality is usually used to reward users by the administration.
User Model
Add the CanPay trait and Customer interface to your User model.
The trait
CanPayalready inheritsHasWallet, reuse will cause an error.
use Bavix\Wallet\Traits\CanPay;
use Bavix\Wallet\Interfaces\Customer;
class User extends Model implements Customer
{
use CanPay;
}Item Model
Add the HasWallet trait and interface to Item model.
Since v9.0.0, there are two product interfaces:
- For an unlimited number of products (
ProductInterface); - For a limited number of products (
ProductLimitedInterface);
An example with an unlimited number of products:
use Bavix\Wallet\Traits\HasWallet;
use Bavix\Wallet\Interfaces\Customer;
use Bavix\Wallet\Interfaces\ProductInterface;
class Item extends Model implements ProductInterface
{
use HasWallet;
public function getAmountProduct(Customer $customer): int|string
{
return 100;
}
public function getMetaProduct(): ?array
{
return [
'title' => $this->title,
'description' => 'Purchase of Product #' . $this->id,
];
}
}Example with a limited number of products:
use Bavix\Wallet\Traits\HasWallet;
use Bavix\Wallet\Interfaces\Customer;
use Bavix\Wallet\Interfaces\ProductLimitedInterface;
use Bavix\Wallet\External\Api\PurchaseQuery;
use Bavix\Wallet\External\Api\PurchaseQueryHandlerInterface;
class Item extends Model implements ProductLimitedInterface
{
use HasWallet;
public function canBuy(Customer $customer, int $quantity = 1, bool $force = false): bool
{
/**
* This is where you implement the constraint logic.
*
* If the service can be purchased once, then
* return ! app(PurchaseQueryHandlerInterface::class)->one(PurchaseQuery::create($customer, $this));
*/
return true;
}
public function getAmountProduct(Customer $customer): int|string
{
return 100;
}
public function getMetaProduct(): ?array
{
return [
'title' => $this->title,
'description' => 'Purchase of Product #' . $this->id,
];
}
}I do not recommend using the limited interface when working with a shopping cart. For shopping cart checks, use PurchaseQuery + PurchaseQueryHandlerInterface as the primary API. PurchaseServiceInterface remains available as a legacy extension point until v14.
Santa Claus, give gifts
Find the user's and check the balance.
$first = User::first();
$last = User::orderBy('id', 'desc')->first(); // last user
$first->getKey() !== $last->getKey(); // true
$first->balance; // 115
$last->balance; // 0One user wants to give a gift to another. Find the product.
$item = Item::first();
$item->getAmountProduct($first); // 100
$item->balance; // 0The first user buys the product and gives it.
If the product uses the
Taxableinterface, then Santa will pay tax.
If the product uses theMerchantFeeDeductibleinterface, the fee is deducted from the merchant's payout instead.
$first->gift($last, $item);
(bool) app(PurchaseQueryHandlerInterface::class)->one(PurchaseQuery::create($last, $item, true)); // bool(true)
$first->balance; // 15
$last->balance; // 0
$item->balance; // 100It's simple!