def show
    @invoice = current_account.invoices.find_by id: params[:id]
    if @invoice
      render json: { invoice: @invoice }
    else