Ratings | | Unique User Downloads | | Download Rankings |
Not yet rated by the users | | Total: 60 | | All time: 10,350 This week: 96 |
|
Description | | Author |
This package can show Paypal account transactions in Laravel Nova.
It can manage a card to be displayed inside a Laravel Nova that shows information retrieved from a given Paypal account calling its API.
Currently it can display the current balance and latest transactions of the specified Paypal account. | |
 |
|
Innovation award
 Nominee: 8x |
|
Details
Nova PayPal Card
A Laravel Nova card to display PayPal current balance and latest transactions.
Installation:
First you must install naif/laravel-paypal naif/laravel-paypal into your Laravel app.
You can install the package in to a Laravel app that uses Nova via composer:
composer require naif/paypal
Usage:
<h4>Add the below to the card function in app/Providers/NovaServiceProvider.php</h4>
protected function cards()
{
return [
(new Paypal())
//you can set days to retrieve transacitons
(new Paypal())->days(3) //default last 5 days
//you can specifivy how many transactions to retreive
(new Paypal())->count(5) //default is 10 transactions
//you can hide PayPal logo
(new Paypal())->hideLogo(true) //default false
//Example for all options
(new Paypal())->days(3)->count(5)->hideLogo(true)
];
}
Support:
naif@naif.io
https://www.linkedin.com/in/naif
License:
The MIT License (MIT). Please see License File for more information.
|
Applications that use this package |
|
No pages of applications that use this class were specified.
If you know an application of this package, send a message to the author to add a link here.