Releases
5.0.0 2/21/2021
it adds two new methods:
response
, to get the payment response.isSuccessful()
, to make easier to validate if the payment is executed successfully and avoid confusion betweenresponse()->successful
as the response state.
4.0.0 9/13/2020
4.0.0
Add support for Laravel 8.
3.0.0 9/13/2020
3.0.0
Add support for Laravel 7 and improvements on response, now you can validate response with helpers:
response methods:
$response = PagaloGT::add(1, 'product', 100.00)->withTestCard()->withTestCredentials()->pay();
if($response->successful()) {
// do something
}
methods:
$response->fail();
$response->successful();
$response->ok()
$response->header('single header');
$response->headers();
2.0.0 9/13/2020
2.0.0
Support for Laravel 6
1.0.0 9/13/2020
1.0.0
Initial release for Laravel 5.5