mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
6ae6a29117
Also includes other minor clean ups and L5 syntax changes
38 lines
979 B
PHP
38 lines
979 B
PHP
<?php namespace App\Http\Controllers;
|
|
|
|
use Utils;
|
|
use App\Ninja\Repositories\InvoiceRepository;
|
|
|
|
class QuoteApiController extends Controller
|
|
{
|
|
protected $invoiceRepo;
|
|
|
|
public function __construct(InvoiceRepository $invoiceRepo)
|
|
{
|
|
$this->invoiceRepo = $invoiceRepo;
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
$invoices = Invoice::scope()->where('invoices.is_quote', '=', true)->orderBy('created_at', 'desc')->get();
|
|
$invoices = Utils::remapPublicIds($invoices->toArray());
|
|
|
|
$response = json_encode($invoices, JSON_PRETTY_PRINT);
|
|
$headers = Utils::getApiHeaders(count($invoices));
|
|
|
|
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);
|
|
}
|
|
*/
|
|
}
|