mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
40 lines
980 B
PHP
40 lines
980 B
PHP
<?php namespace App\Http\Controllers;
|
|
|
|
use Utils;
|
|
use Response;
|
|
use App\Models\Payment;
|
|
use App\Ninja\Repositories\PaymentRepository;
|
|
|
|
class PaymentApiController extends Controller
|
|
{
|
|
protected $paymentRepo;
|
|
|
|
public function __construct(PaymentRepository $paymentRepo)
|
|
{
|
|
$this->paymentRepo = $paymentRepo;
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
$payments = Payment::scope()->orderBy('created_at', 'desc')->get();
|
|
$payments = Utils::remapPublicIds($payments->toArray());
|
|
|
|
$response = json_encode($payments, JSON_PRETTY_PRINT);
|
|
$headers = Utils::getApiHeaders(count($payments));
|
|
|
|
return Response::make($response, 200, $headers);
|
|
}
|
|
|
|
/*
|
|
public function store()
|
|
{
|
|
$data = Input::all();
|
|
$invoice = $this->invoiceRepo->save(false, $data, false);
|
|
|
|
$response = json_encode($invoice, JSON_PRETTY_PRINT);
|
|
$headers = Utils::getApiHeaders();
|
|
return Response::make($response, 200, $headers);
|
|
}
|
|
*/
|
|
}
|