1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-12 22:22:32 +01:00
invoiceninja/app/Http/Controllers/QuoteApiController.php

43 lines
1.0 KiB
PHP
Raw Normal View History

2017-01-30 20:40:43 +01:00
<?php
namespace App\Http\Controllers;
2016-06-06 21:19:49 +02:00
use App\Models\Invoice;
use App\Ninja\Repositories\InvoiceRepository;
2017-01-30 20:40:43 +01:00
use Response;
2016-06-06 21:19:49 +02:00
2017-04-12 14:32:27 +02:00
class QuoteApiController extends InvoiceApiController
2016-06-06 21:19:49 +02:00
{
protected $invoiceRepo;
protected $entityType = ENTITY_INVOICE;
/**
* @SWG\Get(
* path="/quotes",
* summary="List quotes",
* operationId="listQuotes",
* tags={"quote"},
* @SWG\Response(
* response=200,
* description="A list of quotes",
* @SWG\Schema(type="array", @SWG\Items(ref="#/definitions/Invoice"))
* ),
* @SWG\Response(
* response="default",
* description="an ""unexpected"" error"
* )
* )
*/
2016-06-06 21:19:49 +02:00
public function index()
{
$invoices = Invoice::scope()
->withTrashed()
->quotes()
->with('invoice_items', 'client')
2019-01-30 11:45:46 +01:00
->orderBy('updated_at', 'desc');
2016-06-06 21:19:49 +02:00
return $this->listResponse($invoices);
}
}