Skip to content

Commit

Permalink
add cart in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rez1dent3 committed May 24, 2019
1 parent a0eb0ac commit 3c608cb
Show file tree
Hide file tree
Showing 4 changed files with 190 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/_sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
- Purchases

- [Payment](payment)
- [Cart](cart)
- [Payment Free](pay-free)
- [Refund](refund)

Expand Down
94 changes: 94 additions & 0 deletions docs/cart.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
## User Model

Add the `CanPay` trait and `Customer` interface to your User model.

```php
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 `Product` interface to Item model.

```php
use Bavix\Wallet\Traits\HasWallet;
use Bavix\Wallet\Interfaces\Product;
use Bavix\Wallet\Interfaces\Customer;

class Item extends Model implements Product
{
use HasWallet;

public function canBuy(Customer $customer, int $quantity = 1, bool $force = null): bool
{
/**
* If the service can be purchased once, then
* return !$customer->paid($this);
*/
return true;
}

public function getAmountProduct(): int
{
return round($this->price * 100);
}

public function getMetaProduct(): ?array
{
return [
'title' => $this->title,
'description' => 'Purchase of Product #' . $this->getUniqueId(),
'price' => $this->getAmountProduct(),
];
}

public function getUniqueId(): string
{
return (string)$this->getKey();
}
}
```

## Fill the cart

Find the user and check the balance.

```php
$user = User::first();
$user->balance; // int(0)
```

Let's start shopping.

```php
use Bavix\Wallet\Objects\Cart;

$list = [
'potato' => 3,
'carrot' => 10,
];

$products = Item::query()
->whereIn('slug', ['potato', 'carrot'])
->get();

$cart = Cart::make();
foreach ($products as $product) {
// add product's
$cart->addItem($product, $list[$product->slug]);
}

$user->deposit($cart->getTotal());
$user->balanceFloat; // float(151.27)

(bool)$user->payCart($cart); // true
$user->balanceFloat; // float(0)
```

It worked!
1 change: 1 addition & 0 deletions docs/ru/_sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
- Покупки

- [Платеж](payment)
- [Корзина](cart)
- [Купить бесплатно](pay-free)
- [Возврат](refund)

Expand Down
94 changes: 94 additions & 0 deletions docs/ru/cart.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
## Пользователь

Добавим `CanPay` trait и `Customer` interface в модель User.

```php
use Bavix\Wallet\Traits\CanPay;
use Bavix\Wallet\Interfaces\Customer;

class User extends Model implements Customer
{
use CanPay;
}
```

## Товар

Добавим `HasWallet` trait и `Product` interface в модель Item.

```php
use Bavix\Wallet\Traits\HasWallet;
use Bavix\Wallet\Interfaces\Product;
use Bavix\Wallet\Interfaces\Customer;

class Item extends Model implements Product
{
use HasWallet;

public function canBuy(Customer $customer, int $quantity = 1, bool $force = null): bool
{
/**
* If the service can be purchased once, then
* return !$customer->paid($this);
*/
return true;
}

public function getAmountProduct(): int
{
return round($this->price * 100);
}

public function getMetaProduct(): ?array
{
return [
'title' => $this->title,
'description' => 'Purchase of Product #' . $this->getUniqueId(),
'price' => $this->getAmountProduct(),
];
}

public function getUniqueId(): string
{
return (string)$this->getKey();
}
}
```

## Как заполнить корзину

Найдем пользователя и проверим его баланс.

```php
$user = User::first();
$user->balance; // int(0)
```

Приступим к покупкам.

```php
use Bavix\Wallet\Objects\Cart;

$list = [
'potato' => 3,
'carrot' => 10,
];

$products = Item::query()
->whereIn('slug', ['potato', 'carrot'])
->get();

$cart = Cart::make();
foreach ($products as $product) {
// add product's
$cart->addItem($product, $list[$product->slug]);
}

$user->deposit($cart->getTotal());
$user->balanceFloat; // float(151.27)

(bool)$user->payCart($cart); // true
$user->balanceFloat; // float(0)
```

Это работает!

0 comments on commit 3c608cb

Please sign in to comment.