Code Monkey home page Code Monkey logo

newmegchild's People

Contributors

ashbarseghyan avatar edgar-future-system avatar edgar-github avatar elenghulyan avatar hovokoch avatar petrosyan52 avatar valadanchik avatar

Watchers

 avatar

newmegchild's Issues

Idram callback issue and minor changes for payment service

You need to check payment AMOUNT , because idram have issue . user can change amount in idram front end and that value will be chosen for charge. here You check only is set but you need to check value too.

public function idramCallback(Request $request)

You can also use
$request->has('VARIABLE_NAME')
Instead of
isset($request['VARIABLE_NAME'])
You can have
### Laravel Event/Listeners
after check statuses you can fire event and listener will work and do updates in db

self::updateOrderBooksPivotStatus($order, Order::STATUS_FAILED);

You can use findOrFail instead of
$order = Order::where('order_payment_id', $request->order)->first();
if (!$order)
abort(404);
$order = Order::where('order_payment_id', $request->order)->first();

Need to move user name and password to config file like .env or new config file
'userName' => '34540336_api',

Do it necessary create 2 objects of 1 class here ,maybe you can reuse one object in 2 jobs
OrderUserJob::dispatch($order, new OrderMailer());

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.