How to implement IPay88 payment gateway with laravel framework? - laravel

I'm developing one web app for malaysia and I want to implement IPay88 in my code so please provide me a guideline for this, it will be save my days.

You can use this package for integration.
https://github.com/Kyrax324/laravel-ipay88

Related

laravel chatbot integrate in custom website

I need to install chatbot with my custom laravel site.
Please let me know the suggestion for this integration.
I have tired this integration format Link but it's able to integrate properly.
Thanks

Use Angular with Laravel

Anyone know if the best aproach to use laravel and angular is to use angular as Front-End and laravel as back end , or can i use both of them in all in One ?
In the case of each option can you explain please why is that the best aproach ?
Thanks Guys !
The best approach is to create a RESTFUL api in laravel as the backend, and use angular as the font-end client. This is currently the most popular approach as angular is great for creating what are known as "Single Page Applications" (SPA's). SPA's are popular because they allow you to create a seamless user experience by appropriately handling asynchronous behaviour. By keeping your REST api separate from your UI, you can also then add other clients as needed, such as a mobile/native client.

Laravel: Understanding which api framework to choose

Our company is about to start a real estate project and have decided to go with the laravel 5.3 framework. The first phase is to write the apis and then these apis will be consumed by the mobile team and the frontend team to build the official mobile app and the web portal respectively.
Now I am confused whether to use laravel's built-in Resource controllers (as instructed in this tutorial http://www.programmableweb.com/news/how-to-build-restful-apis-using-php-and-laravel/how-to/2014/08/13) or use the Dingo Api framework.
Could you please help me which one should I go for and why as per the requirements i mentioned above?
Thanks in advance
Since, Laravel 5.3 comes with Passport (for api authentication), I would suggest you to use Resource controller, which is very simple and easy to work with, and also it create a meaningful end points
Route::resource('post','PostController');
GET /post/{post}
POST /post
EDIT /post/{post}/edit
DELETE /post/{post}

Connect PhalconPHP with Parse.com

What is the sequence I have to follow in order to integrate PhalconPHP with Parse.com (the php SDK)?
If is it possible how will I access to it?
I have seen that there is an Parse PHP SDK with classes helping us to do requests to Parse Backend.
It's technically a same way as to integrate PHP with parse.com. By following first section of the tutorial you will be able to get SDK classes via \Parse namespace. When installed, it's your choice to wrap an Injectable service around it and hook it to di or to use it as it is.

What i have to do in my app to receive payments? (java - spring)

I am developing a portal where users to access, must buy a plan. This portal is being developed with angular + spring.
To purchase the plan will have to be through PayPal or by entering the credit card information.
I know that PayPal has an API for this case and I have no doubt.
How can I do to implement this logic payments with credit cards? The server part is java soon recommend the use of a service, it must be compatible with Java.
thanks
You should use Paypal Java SDK (https://github.com/paypal/PayPal-Java-SDK). The repository contains working example of performing REST calls to Paypal API, so it should be easy to create a specific Spring service within your app to make use of these calls.

Resources