PHP code example of ars / laravel-cashier

1. Go to this page and download the library: Download ars/laravel-cashier library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

ars / laravel-cashier example snippets


return [
    'wallet' => [
        'ceiling_withdraw' => 0,
    ],
    'tables' => [
        'wallet' => 'wallets',
        'payment' => 'payments',
        'transaction' => 'transactions',
    ],
];

use Ars\Cashier\Models\Traits\HasWallet;

class User extends Model
{
    use HasWallet;
}

  $balance = $user->balance;
  

  $user->deposit(100, ['description' => 'Initial deposit']);
  

  $user->withdraw(50, ['description' => 'Purchase withdrawal']);
  

  if ($user->canWithdraw(50, 10)) {
      echo "Withdrawal allowed";
  } else {
      echo "Withdrawal exceeds allowed limits";
  }
  

use Ars\Cashier\Models\Traits\HasPay;

class Order extends Model
{
    use HasPay;
}

  $payment = $order->requestPay('AUTH123', 200, ['order_id' => $order->id]);
  

  $result = $order->resultPay('AUTH123', '00', 'REF456');
  

  $transaction = $payment->transaction;
  

  $transactions = $wallet->transactions;
  foreach ($transactions as $transaction) {
      echo $transaction->amount . " - " . $transaction->type;
  }
  

  $wallet->ceilingWithdraw = 500;
  

  $payment = Payment::where('authority', 'AUTH123')->first();
  

  $payment->update(['status_code' => '00', 'payed_at' => now()]);
  
bash
php artisan vendor:publish --provider="Ars\Cashier\Providers\CashierServiceProvider"
bash
php artisan migrate