All Projects → artistas → Laravel Pagseguro

artistas / Laravel Pagseguro

Licence: mit
Checkout Transparente e Pagamentos Recorrentes (Assinaturas)

Labels

Projects that are alternatives of or similar to Laravel Pagseguro

Model
The base model traits of Esensi
Stars: ✭ 203 (-4.69%)
Mutual labels:  laravel
Laravel Partialcache
Blade directive to cache rendered partials in laravel
Stars: ✭ 205 (-3.76%)
Mutual labels:  laravel
Blog
Hi, I am CrazyCodes, and here are all my articles
Stars: ✭ 212 (-0.47%)
Mutual labels:  laravel
Search Engine Rank
🐘根据网站关键词,获取网站在各大搜索引擎(百度、360、搜狗)的排名情况,有利于网站seo
Stars: ✭ 197 (-7.51%)
Mutual labels:  laravel
Lighthouse
A framework for serving GraphQL from Laravel
Stars: ✭ 2,685 (+1160.56%)
Mutual labels:  laravel
Workflow
基于laravel的工作流项目
Stars: ✭ 209 (-1.88%)
Mutual labels:  laravel
Laravel Tinker Server
Tinker with your variables while working on your Laravel application
Stars: ✭ 203 (-4.69%)
Mutual labels:  laravel
Laravel Custom Casts
Make your own custom cast type for Laravel model attributes
Stars: ✭ 213 (+0%)
Mutual labels:  laravel
Webhook.site
⚓️ Easily test HTTP webhooks with this handy tool that displays requests instantly.
Stars: ✭ 2,842 (+1234.27%)
Mutual labels:  laravel
Laravel Jit Loader
Stars: ✭ 210 (-1.41%)
Mutual labels:  laravel
Shopper
An eCommerce administration built with Laravel 5 for create online shop.
Stars: ✭ 205 (-3.76%)
Mutual labels:  laravel
Invoiceneko
An Open Sourced Invoice System developed for anyone who needs to generate out an invoice and manage clients
Stars: ✭ 204 (-4.23%)
Mutual labels:  laravel
Laravel Echo Server
Socket.io server for Laravel Echo
Stars: ✭ 2,487 (+1067.61%)
Mutual labels:  laravel
Laravel Executor
Configurable code that can be run when installing and updating your web app.
Stars: ✭ 204 (-4.23%)
Mutual labels:  laravel
Materialize Blog
redesign blog using material design
Stars: ✭ 212 (-0.47%)
Mutual labels:  laravel
Meedu
知识付费、企业线上培训解决方案。
Stars: ✭ 2,742 (+1187.32%)
Mutual labels:  laravel
Meter
Laravel package to find performance bottlenecks in your laravel application.
Stars: ✭ 204 (-4.23%)
Mutual labels:  laravel
Laravel State Machine
Winzou State Machine service provider for Laravel
Stars: ✭ 213 (+0%)
Mutual labels:  laravel
Nova Button
Add buttons on Nova index, detail and lens views.
Stars: ✭ 213 (+0%)
Mutual labels:  laravel
Panel
Pterodactyl is an open-source game server management panel built with PHP 7, React, and Go. Designed with security in mind, Pterodactyl runs all game servers in isolated Docker containers while exposing a beautiful and intuitive UI to end users.
Stars: ✭ 2,988 (+1302.82%)
Mutual labels:  laravel

Codacy Badge Total Downloads Monthly Downloads Latest Stable Version License

Visite a Wiki para verificar os detalhes de como utilizar esta Package.

Qualquer problema, dúvida ou sugestão sinta-se livre para abrir uma issue ou enviar um PR.

use PagSeguro; //Utilize a Facade

try {
    $pagseguro = PagSeguro::setReference('2')
    ->setSenderInfo([
       'senderName' => 'Nome Completo', //Deve conter nome e sobrenome
       'senderPhone' => '(32) 1324-1421', //Código de área enviado junto com o telefone
       'senderEmail' => '[email protected]',
       'senderHash' => 'Hash gerado pelo javascript',
       'senderCNPJ' => '98.966.488/0001-00' //Ou CPF se for Pessoa Física
    ])
    ->setShippingAddress([
       'shippingAddressStreet' => 'Rua/Avenida',
       'shippingAddressNumber' => 'Número',
       'shippingAddressDistrict' => 'Bairro',
       'shippingAddressPostalCode' => '12345-678',
       'shippingAddressCity' => 'Cidade',
       'shippingAddressState' => 'UF'
     ])
     ->setItems([
      [
        'itemId' => 'ID',
        'itemDescription' => 'Nome do Item',
        'itemAmount' => 12.14, //Valor unitário
        'itemQuantity' => '2', // Quantidade de itens
      ],
      [
        'itemId' => 'ID 2',
        'itemDescription' => 'Nome do Item 2',
        'itemAmount' => 12.14,
        'itemQuantity' => '2',
      ]
    ])
    ->send([
      'paymentMethod' => 'boleto'
    ]);
}
catch(\Artistas\PagSeguro\PagSeguroException $e) {
    $e->getCode(); //codigo do erro
    $e->getMessage(); //mensagem do erro
}

Créditos

Criador: fernandobandeira

Contribuidores

PagSeguro Recorrente (Inicial): vanessasoutoc

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].