From 71b12f1886271031552ca7f934d5d75bb3ada75a Mon Sep 17 00:00:00 2001 From: Cristopher Date: Tue, 2 Apr 2024 09:56:11 +0200 Subject: [PATCH] deleting config --- Config/billable.php | 58 --------------------------------------------- 1 file changed, 58 deletions(-) delete mode 100644 Config/billable.php diff --git a/Config/billable.php b/Config/billable.php deleted file mode 100644 index 68b759b..0000000 --- a/Config/billable.php +++ /dev/null @@ -1,58 +0,0 @@ - [ - "mercadopago" => [ - "isDevMode" => true, - "name" => "MercadoPago", - "tax" => [ - "type" => "percent", - "amount" => 6.0 - ], - "currencies" => ["PEN"], - "token" => env('BILLABLE_MERCADOPAGO_ACCESS_TOKEN') - ], - "paypal" => [ - "isDevMode" => true, - "name" => "Paypal", - "tax" => [ - "type" => "percent", - "amount" => 6.0 - ], - "currencies" => ["USD"], - "token" => [ - "CLIENT_ID" => env('BILLABLE_PAYPAL_CLIENT_ID'), - "CLIENT_SECRET" => env('BILLABLE_PAYPAL_CLIENT_SECRET') - ] - ] - ], - 'table' => [ - "prefix" => "cri_", - "users" => "users" - ], - - 'order' => [ - 'user' => [ - /*** - * - * How the user relation will show it - * can be as an object [key name] => "Column name" - * 'columns' => [ - * "id" => 'id', - * "name" => "name", - * "lastname" => "lastname" - * ] - * or just as an array - * ["id", "name", "lastname", "email"] -> this will use each column as a key name - * - * **/ - - 'columns' => [ - "id" => 'id', - "name" => "name", - "lastname" => "lastname", - "email" => "email" - ] - ] - ] -];