Fix quote api controller
This commit is contained in:
parent
7dc40a3388
commit
be041629a3
1 changed files with 1 additions and 8 deletions
|
|
@ -6,19 +6,12 @@ use App\Models\Invoice;
|
|||
use App\Ninja\Repositories\InvoiceRepository;
|
||||
use Response;
|
||||
|
||||
class QuoteApiController extends InvoiceAPIController
|
||||
class QuoteApiController extends InvoiceApiController
|
||||
{
|
||||
protected $invoiceRepo;
|
||||
|
||||
protected $entityType = ENTITY_INVOICE;
|
||||
|
||||
public function __construct(InvoiceRepository $invoiceRepo)
|
||||
{
|
||||
parent::__construct();
|
||||
|
||||
$this->invoiceRepo = $invoiceRepo;
|
||||
}
|
||||
|
||||
/**
|
||||
* @SWG\Get(
|
||||
* path="/quotes",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue