Coder Social home page Coder Social logo

laravel-urway's Introduction

URWAY Payment Gateway (Laravel Package)

Installation

composer require abdallahmohammed/urway-laravel

In Laravel starting from 6.x the service provider will automatically get registered. In older versions of the framework just add the service provider in config/app.php file:

'providers' => [
    // ...
    URWay\URWayServiceProvider::class,
],

You can optionally register the facade in config/app.php

'facades' => [
    // ...
    'URWay' => URWay\Facade\URWay::class,
],

You can publish using the following command

php artisan vendor:publish --provider="URWay\URWayServiceProvider"

When published, the config/urway.php config file contains:

<?php

return [
    'auth' => [
        'terminal_id' => env('URWAY_TERMINAL_ID'),
        'password' => env('URWAY_PASSWORD'),
        'merchant_key' => env('URWAY_MERCHANT_KEY'),
    ],
];

Usage

use URWay\Client;

// Create clint instance.
$client = new Client();

$client->setTrackId('YOUR_TRAKING_ID')
        ->setCustomerEmail('...')
        ->setCustomerIp('...')
        ->setCurrency('USD')
        ->setCountry('EG')
        ->setAmount(5)
        ->setRedirectUrl('...');
        
// Replace presented attributes with the given array.
$client->setAttributes([
    '...' => '...'
]);

// Merge presented attributes the given array.
$client->mergeAttributes([
    '...' => '...'
]);

// Replace one of presented attributes with the new value.
$client->setAttribute('...', '...');

// Remove one of attributes.
$client->removeAttribute('...');

// Determine whether an attribute exists.
$client->hasAttribute('...'); // returns boolean (true, or false)

$redirect_url = $client->pay();

return redirect()->url($redirect_url);

And on callback to handle response put the following code:

use URWay\Client;

// Create clint instance.
$client = new Client();

$response = $client->find('TRANSACTION_ID');

if ($response->isSuccess()) {
    //
}

if ($response->isFailure()) {
    //
}

// To dump all payment details.
dd($response);

laravel-urway's People

Contributors

abdallamohammed avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.