App\Http\Controllers\QuoteApiController::index PHP Method

index() public method

public index ( )
    public function index()
    {
        $invoices = Invoice::scope()->withTrashed()->quotes()->with('invoice_items', 'client')->orderBy('created_at', 'desc');
        return $this->listResponse($invoices);
    }
QuoteApiController