PHP code example of tonystore / laravel-paymentez

1. Go to this page and download the library: Download tonystore/laravel-paymentez 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/ */

    

tonystore / laravel-paymentez example snippets

 
 

return [
    'auth_code' => env('PAYMENTEZ_API_CODE', ''),

    'auth_key' => env('PAYMENTEZ_API_KEY', ''),

    'base_url' => [
        'ccapi' => env('PAYMENTEZ_CCAPI_URL'),
        'noccapi' =>  env('PAYMENTEZ_NOCCAPI_URL')
    ],
];
 
 
use TonyStore\LaravelPaymentez\Facades\PaymentezCard;


$uid = '23';
$cards = PaymentezCard::getList($uid);

 
 
use TonyStore\LaravelPaymentez\Facades\PaymentezCard;


$uid = '23';
$token = '785896526632'
PaymentezCard::delete($token, ["id" => (string)$uid]);

 
 
use TonyStore\LaravelPaymentez\Facades\PaymentezCard;


$cardToken = "myAwesomeTokenCard";

$userDetails = [
    'id' => "23", 
    'email' => "[email protected]" 
];

$orderDetails = [
    'amount' => 100.00, 
    'description' => "XXXXXX",
    'dev_reference' => "XXXXXX", 
    'vat' => 0.00 
];

$created = PaymentezCharge::create($cardToken, $orderDetails, $userDetails);

$object = $created->toObject(); //Obtener la respuesta en formato objeto simple
$collection = $created->toCollection(); //Obtener la respuesta en una colección
$array = $created->toArray(); //Obtener la respuesta en un arreglo
$response = $created->toResponse(); // Obtener instancia de Response

// Obtener información de la respuesta

// Estado
$status = $object->transaction->status;

// Id de la transacción
$transactionId = $object->transaction->id;
bash
  php artisan vendor:publish --provider="TonyStore\LaravelPaymentez\LaravelPaymentezProvider"